mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
24 lines
611 B
HTML
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>
|