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

<body>
<input type="checkbox" checked="checked" id="foo"><span>There should be no red</span>
<input type="radio" checked="checked" id="foo"><span>There should be no red</span>
</body>
</html>