Bumping manifests a=b2g-bump
[gecko.git] / layout / reftests / bugs / 120834-2g.html
blob3bd53b1efe801fa1acd565ac6e4dff1198c6b417
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
5 span { color: red }
6 :checked + span { color: green }
7 [checked] + span { color: red ! important }
8 input { display: none }
9 </style>
11 <body onload='document.getElementById("foo").checked = true;
12 document.getElementById("bar").checked = true;'>
13 <input type="checkbox" id="foo"><span>There should be no red</span>
14 <input type="radio" id="bar"><span>There should be no red</span>
15 </body>
16 </html>