summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/348809-2a.html
blob: f3e30ef98cb15502fb7c97522db2664076128773 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!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="submit" checked="checked" id="foo"><span>There should be no red.</span>
</div>
<div>
  <input type="submit"><span class="reverse">There should be no red.</span>
</div>
</form>
</body>
</html>