blob: 9b2f17e42028316afb7c576c88b5bbed446483d9 [file] [log] [blame]
<html><head><title>Collapsing Table Bug in Mozilla bug 55694</title></head>
<body bgcolor="#FFFFFF">
<p>The table below is inside a div tag with <b>absolute</b> positioning for top and
left but not for width.
The table should push it out to 100% but it doesn't. Instead the layer collapses </p>
<div style="position:absolute; top: 70; background-color: #CCFFCC;">
<table width="100%" border=1>
<tr>
<td>Table width = 100%</td>
</tr>
</table>
</div>
<P><BR><BR><BR><BR></p>
<p>The next table is inside a div tag set with <b>relative</b> positioning.<br>No width has been set </p>
<div style="position:relative; background-color: #CC0066;">
<table width="100%" border=1>
<tr>
<td>Table width = 100%</td>
</tr>
</table>
</div>
</body></html>