RetroZilla/layout/html/tests/table/bugs/bug19526.html
2015-10-20 23:03:22 -04: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>