diff options
Diffstat (limited to 'layout/reftests/bugs/315920-7b.html')
-rw-r--r-- | layout/reftests/bugs/315920-7b.html | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/layout/reftests/bugs/315920-7b.html b/layout/reftests/bugs/315920-7b.html new file mode 100644 index 000000000..0f5ec145e --- /dev/null +++ b/layout/reftests/bugs/315920-7b.html @@ -0,0 +1,19 @@ +<!DOCTYPE html> +<html> + <head> + <style> + label {color: red} + input[checked]:default:checked ~ label {color: green} + </style> + </head> + <body onload='var e1 = document.getElementById("one"); + e1.setAttribute("checked", "false"); + document.getElementById("two").removeAttribute("checked");'> + <form> + <input type="radio" name="group1" id="one" value="1"/> + <label for="one">Should be no red</label><br> + <input type="radio" name="group1" id="two" value="2" checked/> + <label for="two">Should be no red</label> + </form> + </body> +</html> |