bernd.mielke%snafu.de ba142d2779 adding table regression tests not part of the build
git-svn-id: svn://10.0.0.236/trunk@101092 18797224-902f-48f8-a5cc-f745e15eee43
2001-08-15 07:54:50 +00:00

28 lines
768 B
HTML

<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>