summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/348809-2b.html
blob: df0e61ac0d32ff1bc7a447c36e8ae4054656ddb0 (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 }
button { display: none }
</style>
</head>
<body>
<form>
<div>
  <button type="submit" checked="checked" id="foo"></button>
  <span>There should be no red.</span>
</div>
<div>
  <button type="submit"></button><span class="reverse">There should be no red.</span>
</div>
</form>
</body>
</html>