bzbarsky%mit.edu bafdaf89c7 Adding regression tests.
git-svn-id: svn://10.0.0.236/trunk@199014 18797224-902f-48f8-a5cc-f745e15eee43
2006-06-05 03:43:07 +00:00

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>