зеркало из https://github.com/mozilla/gecko-dev.git
49 строки
525 B
HTML
49 строки
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>
|