blob: 889fa7b3d2d3c687e853e1a40c03b6dccbeeedfd (
plain)
1
2
3
4
5
6
7
8
9
10
|
<!DOCTYPE html>
<html>
<head/>
<body>
<select size="2">
<option id="one" style="color: red" disabled="disabled">Should be green</option>
<option id="two" style="color: blue">Should be blue</option>
</select>
</body>
</html>
|