blob: 5153a4e52a7c61ee616b2dc418b7b3f3b3ed14fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<!DOCTYPE html>
<html>
<head/>
<body>
<select size="4" id="selection">
<option id="zero" style="color: green" selected="true">Should be no red</option>
<option id="two" style="color: green">Should be no red</option>
<option id="three" style="color: green">Should be no red</option>
</select>
</body>
</html>
|