summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/348809-1f.html
blob: 7cc0538070a39387e5bad2e6b153f910f7a9f9d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<html>
<head>
<style>
span { color: green }
:default:checked + span { color: red }
input { display: none }
</style>
</head>
<body>
<input type="checkbox" checked="checked" id="foo"><span>There should be no red</span>
 <script>
  var foo = document.body.offsetWidth;
  document.getElementById("foo").removeAttribute("checked");
</script>
</body>
</html>