summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/348809-2e.html
blob: 91437288d91f32cff9d16b90c6d095d84877ef00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!DOCTYPE html>
<html>
<head>
<style>
span { color: green }
:default + span { color: red }
span.reverse { color: red }
:default + span.reverse { color: green }
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>
<script>
  var foo = document.body.offsetWidth;
  document.getElementById("foo").removeAttribute("type");
</script>
</body>
</html>