diff options
Diffstat (limited to 'layout/reftests/bugs/315920-18a.html')
-rw-r--r-- | layout/reftests/bugs/315920-18a.html | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/layout/reftests/bugs/315920-18a.html b/layout/reftests/bugs/315920-18a.html new file mode 100644 index 000000000..6ee39dce0 --- /dev/null +++ b/layout/reftests/bugs/315920-18a.html @@ -0,0 +1,17 @@ +<!DOCTYPE html> +<html class="reftest-wait"> + <head> + <style> + label {color: red} + img:not(:-moz-broken) ~ label {color: green} + img { display: none; } + </style> + </head> + <body onload='var i1 = document.getElementById("ffximage"); + i1.onload = + function() { document.documentElement.className = ""; }; + i1.setAttribute("src", "solidblue.png");'> + <img src="no-such-scheme:nothing" id="ffximage"/> + <label for="ffximage">Text should be green</label> + </body> +</html> |