summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/315920-1a.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/bugs/315920-1a.html')
-rw-r--r--layout/reftests/bugs/315920-1a.html17
1 files changed, 17 insertions, 0 deletions
diff --git a/layout/reftests/bugs/315920-1a.html b/layout/reftests/bugs/315920-1a.html
new file mode 100644
index 0000000000..f7aeabca3a
--- /dev/null
+++ b/layout/reftests/bugs/315920-1a.html
@@ -0,0 +1,17 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <style>
+ option {color: blue}
+ option:disabled {color: green}
+ option#one:not([disabled]):not(:disabled) + option#two {color: red}
+ </style>
+ </head>
+ <body onload='var elem = document.getElementById("one");
+ elem.setAttribute("disabled", "disabled");'>
+ <select size="2">
+ <option id="one">Should be green</option>
+ <option id="two">Should be blue</option>
+ </select>
+ </body>
+</html>