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