gecko/layout/html/tests/formctls/bugs/bug300474-1.html

32 lines
658 B
HTML

<html>
<body>
<form>
The buggy display : Select's size attribute is not specified :
<select multiple="multiple">
<optgroup label="Label">
<option label="a">a</option>
<option label="a">a</option>
<option label="a">a</option>
</optgroup>
</select>
<br>
<br>
<br>
What should be displayed : Select's size attribute is forced to 4 :
<select multiple="multiple" size="4">
<optgroup label="Label">
<option label="a">a</option>
<option label="a">a</option>
<option label="a">a</option>
</optgroup>
</select>
<br>
<br>
<br>
The width of the widget is also not perfect.
</form>
</body>
</html>