gecko-dev/layout/reftests/bugs/348809-1f.html

18 строки
378 B
HTML
Исходник Обычный вид История

2007-02-09 09:20:47 +03:00
<!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;
onload='document.getElementById("foo").removeAttribute("checked");'
</script>
</body>
</html>