mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
19 lines
329 B
HTML
19 lines
329 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<body>
|
||
|
<select size="10">
|
||
|
Shouldn't see me
|
||
|
<option>one</option>
|
||
|
Or me
|
||
|
<option>two</option>
|
||
|
<optgroup>
|
||
|
I should hide too
|
||
|
<option>three</option>
|
||
|
And me too
|
||
|
<option>four</option>
|
||
|
</optgroup>
|
||
|
And I
|
||
|
</select>
|
||
|
</body>
|
||
|
</html>
|