Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- Manifest: layout/reftests/bugs/reftest.list
<!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>