Bumping manifests a=b2g-bump
[gecko.git] / layout / reftests / bugs / 315920-23.html
blobdc3c2e0ede85d1780ce2d3721bffc21fb9ac041c
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
5 label {color: red}
6 #one[disabled]:not(:enabled) + label {color: green}
7 #two:not([disabled]):enabled + label {color: green}
8 </style>
9 </head>
10 <body onload='var elem = document.getElementById("one");
11 elem.setAttribute("disabled", "disabled");
12 document.getElementById("two").removeAttribute("disabled")'>
13 <div>
14 <input id="one"/>
15 <label for="one">Should be no red</label>
16 </div>
17 <div>
18 <input id="two" disabled="disabled"/>
19 <label for="two">Should be no red</label>
20 </div>
21 </body>
22 </html>