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

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