Files
Mozilla/mozilla/layout/html/tests/table/bugs/bug27038-2.html
(no author) d368a405db This commit was manufactured by cvs2svn to create branch
'MOZILLA_1_8_0_BRANCH'.

git-svn-id: svn://10.0.0.236/branches/MOZILLA_1_8_0_BRANCH@185757 18797224-902f-48f8-a5cc-f745e15eee43
2005-12-07 05:54:01 +00:00

49 lines
525 B
HTML

<html>
<head>
<title>test a bug</title>
</head>
<body>
<p>TABLE 1 - without 'height' style on TABLE</p>
<table style="border: solid">
<thead>
<tr>
<td>THEAD</td>
</tr>
</thead>
<tfoot>
<tr>
<td>TFOOT</td>
</tr>
</tfoot>
<tbody>
<tr>
<td>TBODY</td>
</tr>
</tbody>
</table>
<hr>
<p>TABLE 2 - with 'height' style on TABLE</p>
<table style="border: solid; height: 100%">
<thead>
<tr>
<td>THEAD</td>
</tr>
</thead>
<tfoot>
<tr>
<td>TFOOT</td>
</tr>
</tfoot>
<tbody>
<tr>
<td>TBODY</td>
</tr>
</tbody>
</table>
</body>
</html>