mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
32 lines
658 B
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>
|