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

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