tenfourfox/layout/reftests/bugs/271747-1a.html

21 lines
413 B
HTML
Raw Normal View History

2017-04-19 07:56:45 +00: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></td>
<td>
<script>var x=document.body.offsetHeight;</script>
</td>
</tr>
<tr>
<td width="100"></td>
<td width="500"></td>
</tr>
</tbody></table>
</body></html>