summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/348809-2f.html
blob: 74d69838bb6abfacee50f82aa5d33fe030016efa (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
27
<!DOCTYPE html>
<html>
<head>
<style>
span { color: green }
:default + span { color: red }
span.reverse { color: red }
:default + span.reverse { color: green }
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>
<script>
  var foo = document.body.offsetWidth;
  document.getElementById("foo").setAttribute("type", "button");
</script>
</body>
</html>