Bumping manifests a=b2g-bump
[gecko.git] / layout / reftests / bugs / 404301-1.html
blob9771a0bcec466214efc2ab8566a3166ab1575007
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
5 table { background: white }
6 col[span] { background: green }
7 td { color: white }
8 </style>
9 </head>
10 <body onload="runTest()">
11 <table>
12 <colgroup id="x">
13 <col span="2"></col>
14 <col id="y"></col>
15 </colgroup>
16 <tr>
17 <td>One</td>
18 <td>Two</td>
19 <td>Three</td>
20 <td>Four</td>
21 </tr>
22 </table>
24 <script>
25 function runTest() {
26 document.body.offsetWidth;
27 document.getElementById("x").insertBefore(document.createElement("col"),
28 document.getElementById("y"));
30 </script>
31 </body>
32 </html>