Mozilla/mozilla/layout/html/tests/style/bugs/bug348809-14.html
bzbarsky%mit.edu 1851a1d1ac Another test
git-svn-id: svn://10.0.0.236/trunk@207561 18797224-902f-48f8-a5cc-f745e15eee43
2006-08-16 06:35:38 +00:00

14 lines
310 B
HTML

<!DOCTYPE html>
<html>
<head>
<style>
span { color: green }
:default:checked + span { color: red }
input { display: none }
</style>
<body onload='document.getElementById("foo").removeAttribute("checked");'>
<input type="checkbox" checked="checked" id="foo"><span>There should be no red</span>
</body>
</html>