Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / tables / mozilla / bugs / bug55694.html
blob3d7fef0b8a11877618622124f65bf42f4656b0e6
1 <html><head><title>Collapsing Table Bug in Mozilla bug 55694</title></head>
2 <body bgcolor="#FFFFFF">
4 <p>The table below is inside a div tag with <b>absolute</b> positioning for top and
5 left but not for width.
6 The table should push it out to 100% but it doesn't. Instead the layer collapses </p>
8 <div style="position:absolute; top: 70; background-color: #CCFFCC;">
9 <table width="100%" border=1>
10 <tr>
11 <td>Table width = 100%</td>
12 </tr>
13 </table>
14 </div>
16 <P><BR><BR><BR><BR></p>
18 <p>The next table is inside a div tag set with <b>relative</b> positioning. <br>No width has been set </p>
19 <div style="position:relative; background-color: #CC0066;">
20 <table width="100%" border=1>
21 <tr>
22 <td>Table width = 100%</td>
23 </tr>
24 </table>
25 </div>
27 </body></html>