blob: 7612dd0e561a6de98277f2a0e3a6b9c492105ece (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<!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>
|