summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/315920-19.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/bugs/315920-19.html')
-rw-r--r--layout/reftests/bugs/315920-19.html19
1 files changed, 19 insertions, 0 deletions
diff --git a/layout/reftests/bugs/315920-19.html b/layout/reftests/bugs/315920-19.html
new file mode 100644
index 0000000000..efa3c2e545
--- /dev/null
+++ b/layout/reftests/bugs/315920-19.html
@@ -0,0 +1,19 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <style>
+ span {color: red}
+ label {color: red}
+ input[disabled]:disabled ~ span {color: green}
+ input[disabled]:disabled + label {color: green}
+ input { display: none; }
+ </style>
+ </head>
+ <body onload='var i1 = document.getElementById("ffximage");
+ i1.setAttribute("disabled", "disabled");'>
+ <input type="image" id="ffximage"/>
+ <label for="ffximage">Should be no red</label>
+ <br>
+ <span>Should be no red</span>
+ </body>
+</html