gecko/layout/html/tests/style/bugs/bug348809-8.html

14 lines
292 B
HTML

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