RetroZilla/layout/html/tests/table/bugs/bug11944.html
2015-10-20 23:03:22 -04:00

24 lines
611 B
HTML

<html>
<body bgcolor=#c0c0c0>
<table border=20 cellspacing=10 height=150>
<tr>
<td>cell content</td>
</tr>
</table>
<p>The following two tables demostrates the bug with TD and TABLE both having height specified.</p>
<table border=20 cellspacing=10 height=210>
<tr>
<td height=150>height=210 (150+2*10+2*20)</td>
</tr>
</table>
<table border=20 cellspacing=10 height=211>
<tr>
<td height=150>height=211 (150+2*10+2*20+1)</td>
</tr>
</table>
</body>
</html>