blob: 069167ca22b0bdef0b5e2051822df5565690da70 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<!DOCTYPE html>
<html>
<head>
<style>
span {color: green}
#one:checked + span {color: red}
#two:default + span {color: red}
</style>
</head>
<body onload='document.getElementById("one").removeAttribute("type");
document.getElementById("two").removeAttribute("type");'>
<div>
<input type="text" id="one" checked="checked" type="checkbox"/>
<span>Should be no red </span>
</div>
<div>
<input type="text" id="two" checked="checked" type="checkbox"/>
<span>Should be no red </span>
</div>
</body>
</html>
|