blob: dc3c2e0ede85d1780ce2d3721bffc21fb9ac041c (
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>
label {color: red}
#one[disabled]:not(:enabled) + label {color: green}
#two:not([disabled]):enabled + label {color: green}
</style>
</head>
<body onload='var elem = document.getElementById("one");
elem.setAttribute("disabled", "disabled");
document.getElementById("two").removeAttribute("disabled")'>
<div>
<input id="one"/>
<label for="one">Should be no red</label>
</div>
<div>
<input id="two" disabled="disabled"/>
<label for="two">Should be no red</label>
</div>
</body>
</html>
|