gecko/layout/reftests/bugs/271747-1b.html

21 lines
437 B
HTML
Raw Normal View History

2007-12-19 08:52:37 -08:00
<html><head>
<title>Bug 271747 <20> Width in table cells in bottom row sometimes ignored</title>
<style>
td{background-color:green;}
tr{height:100px;}
</style>
</head>
<body>
<table cellpadding="0"><tbody>
<tr>
<td width="100"></td>
<td width="100">
<script>var x=document.body.offsetHeight;</script>
</td>
</tr>
<tr>
<td width="100"></td>
<td width="500"></td>
</tr>
</tbody></table>
</body></html>