blob: 5edafcc70855ae556caacc51edb2c1a6576c2abf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<!DOCTYPE html>
<html>
<head>
<style>
optgroup {color: red}
optgroup:disabled {color: green}
optgroup[disabled]:disabled + optgroup {color: green}
optgroup:not(:disabled) {color: red}
</style>
</head>
<body onload='document.getElementById("ogone").setAttribute("disabled", "disabled");'>
<select size="2">
<optgroup id="ogone" label="There should be no red">
</optgroup>
<optgroup id="ogtwo" label="There should be no red">
</optgroup>
</select>
</body>
</html>
|