summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/348809-2c.html
blob: bcf565e08fa3fe154eb8769b0bf90f539ea06573 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html>
<head>
<style>
span { color: red }
:default + span { color: green }
span.reverse { color: green }
:default + span.reverse { color: red }
input { display: none }
</style>
</head>
<body>
<form>
<div>
  <input type="checkbox" checked="checked" id="foo">
  <span>There should be no red.</span>
</div>
<div>
  <input checked="checked"><span class="reverse">There should be no red.</span>
</div>
</form>
</body>
</html>