karnaze%netscape.com 7931565332 new regression tests, not affecting the build
git-svn-id: svn://10.0.0.236/trunk@60712 18797224-902f-48f8-a5cc-f745e15eee43
2000-02-14 07:20:38 +00:00

40 lines
974 B
HTML

<html>
<head>
<title>Testing the use of table height</title>
</head>
<body>
<P> 100 percent height table inside 100 percent height table:</P>
<!-- This works -->
<table border=1 width="100%" height="100%" bgcolor=grey>
<td width="50%">
<!-- This does not work -->
<table width="100%" height="100%" border=1 bgcolor=yellow>
<td width="50%">&nbsp;Inner Table (yellow)</td><td width="50%">&nbsp;</td></tr>
</table>
</td>
<td width="50%">
&nbsp;Outer Table (grey)
</td>
</table>
<P> 50 percent height table inside 100 percent height table:</P>
<!-- This works -->
<table border=1 width="100%" height="100%" bgcolor=grey>
<td width="50%">
<!-- This does not work -->
<table width="100%" height="50%" border=1 bgcolor=yellow>
<td width="50%">&nbsp;Inner Table (yellow)</td><td width="50%">&nbsp;</td></tr>
</table>
</td>
<td width="50%">
&nbsp;Outer Table (grey)
</td>
</table>
</body>
</html>