summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/315920-25.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/bugs/315920-25.html')
-rw-r--r--layout/reftests/bugs/315920-25.html23
1 files changed, 23 insertions, 0 deletions
diff --git a/layout/reftests/bugs/315920-25.html b/layout/reftests/bugs/315920-25.html
new file mode 100644
index 0000000000..7c523b0390
--- /dev/null
+++ b/layout/reftests/bugs/315920-25.html
@@ -0,0 +1,23 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <style>
+ span {color: red}
+ input[type=submit]:not([disabled]):not(:disabled) ~ span {color: green}
+ input[type=submit][disabled]:disabled + span {color: blue}
+ input[type=text] + span {color: red}
+ input { display: none }
+ </style>
+ </head>
+
+ <body onload='document.getElementById("one").setAttribute("type", "submit");
+ document.getElementById("two").setAttribute("type", "submit");
+ document.getElementById("two").setAttribute("disabled", "disabled");
+ document.getElementById("one").removeAttribute("disabled");'>
+ <input type="text" id="one" disabled="disabled"/>
+ <span>Should be no red </span><br>
+ <span>Should be no red </span><br>
+ <input type="text" id="two"/>
+ <span>Should be no red </span>
+ </body>
+</html>