summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/120834-2j.html
blob: 1e004741084724be1958de2db4d875d847c97532 (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]:checked + span { color: red }
input { display: none }
</style>

<body onload='document.getElementById("foo").removeAttribute("checked");
              document.getElementById("bar").removeAttribute("checked");'>
<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>