diff options
Diffstat (limited to 'layout/reftests/bugs/315920-9.html')
-rw-r--r-- | layout/reftests/bugs/315920-9.html | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/layout/reftests/bugs/315920-9.html b/layout/reftests/bugs/315920-9.html new file mode 100644 index 0000000000..fc92ed567f --- /dev/null +++ b/layout/reftests/bugs/315920-9.html @@ -0,0 +1,26 @@ +<!DOCTYPE html> +<html> + <head> + <style> + label {color: red} + input[checked]:checked:default ~ label {color: green} + input:not([checked]):not(:checked) + label {color: red} + </style> + </head> + <body onload='var form = document.getElementById("form"); + var input2 = document.createElement("input"); + input2.setAttribute("type", "radio"); + input2.setAttribute("id", "two"); + input2.setAttribute("checked", "true"); + form.insertBefore(input2, form.firstChild); + var label2 = document.createElement("label"); + label2.setAttribute("for", "two"); + var text2 = document.createTextNode("Should be no red"); + label2.appendChild(text2); + form.insertBefore(label2, document.getElementById("one"));'> + <form id="form"> + <input type="radio" name="group1" id="one" value="1"/> + <label for="one">Should be no red</label> + </form> + </body> +</html> |