haikuwebkit/LayoutTests/fast/replaced/width100percent-menulist.html

21 lines
433 B
HTML

<html>
<head>
<style>
.test { width: 100%; }
</style>
</head>
<body>
The popup buttons below should not overlap.
<table border="0" cellspacing="1" cellpadding="1" width="100%">
<tr>
<td nowrap><select class="test"><option>one</option></select></td>
<td><select class="test"><option>two</option></select></td>
<td><select class="test"><option>three</option></select></td>
<td width="100%">&nbsp;</td>
</tr>
</table>
</body>
</html>