karnaze%netscape.com 6178e7fca1 new regression tests, not affecting the build.
git-svn-id: svn://10.0.0.236/trunk@79455 18797224-902f-48f8-a5cc-f745e15eee43
2000-09-18 20:24:16 +00:00

36 lines
414 B
HTML

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>tfoot css</title>
<style type="text/css">
<!--
table{height:100%;}
thead{font-weight:bold}
tfoot{font-weight:bold}
-->
</style>
</head>
<body>
<table summary="tfoot test">
<thead>
<tr>
<td>THEAD</td>
</tr>
</thead>
<tfoot>
<tr>
<td>TFOOT</td>
</tr>
</tfoot>
<tbody>
<tr>
<td>TBODY</td>
</tr>
</tbody>
</table>
</body>
</html>