summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/120834-2g.html
blob: 3bd53b1efe801fa1acd565ac6e4dff1198c6b417 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!DOCTYPE html>
<html>
<head>
<style>
span { color: red }
:checked + span { color: green }
[checked] + span { color: red ! important }
input { display: none }
</style>

<body onload='document.getElementById("foo").checked = true;
              document.getElementById("bar").checked = true;'>
<input type="checkbox" id="foo"><span>There should be no red</span>
<input type="radio" id="bar"><span>There should be no red</span>
</body>
</html>