Files
Mozilla/mozilla/layout/html/tests/table/bugs/bug19526.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

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>