summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/120834-2d.html
blob: 8650e8200c55399777cb767089f70d8622d9dabe (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").removeAttribute("type");
              document.getElementById("bar").removeAttribute("type");'>
<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>