summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/315920-30-ref.html
blob: 7599eaf8ff94694f8e9e96f8ac931d8a272b8fce (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>
    <title>Reference for 315920-11f</title>
    <style>
      option {color: green}
      optgroup {color: green}
    </style>
  </head>
  <body>
    <select size="7">
      <optgroup id="ogone" label="There should be no red" disabled="disabled">
        <option id="one" style="color:blue" selected="selected">This should be blue</option>
        <option id="two" style="color:blue">This should be blue</option>
      </optgroup>
      <optgroup id="ogtwo" label="There should be no red">
        <option id="three">There should be no red</option>
        <option id="four">There should be no red</option>
      </optgroup>
    </select>
  </body>
</html>