gecko/layout/reftests/bugs/348809-1e.html

24 lines
426 B
HTML
Raw Normal View History

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