gecko/layout/reftests/bugs/271747-1b.html
Daniel Holbert 783f0d51f8 (No code changes) Change a bunch of non-executable files in layout/ to have non-executable mode.
Filetypes changed: .cpp .gif .h .html .list .png .svg .x-ccmap .xbl .xhtml .xul
2008-07-11 11:54:06 -07:00

21 lines
437 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<html><head>
<title>Bug 271747 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>