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

31 lines
749 B
HTML

<html>
<head>
<style>
.test { width: 100%; }
</style>
</head>
<body>
The following sets of buttons should not overlap.
<table border="0" cellspacing="1" cellpadding="1" width="100%">
<tr>
<td nowrap><input type="button" value="New Mail" class="test"></td>
<td><input type="button" value="Reply" class="test"></td>
<td><input type="button" value="Reply All" class="test"></td>
<td width="100%">&nbsp;</td>
</tr>
</table>
<br>
<br>
<table border="0" cellspacing="1" cellpadding="1" width="100%">
<tr>
<td nowrap><input type="submit" value="New Mail" class="test"></td>
<td><input type="submit" value="Reply" class="test"></td>
<td><input type="submit" value="Reply All" class="test"></td>
<td width="100%">&nbsp;</td>
</tr>
</table>
</body>
</html>