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

20 lines
382 B
HTML

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