no bug - Bumping Firefox l10n changesets r=release a=l10n-bump DONTBUILD CLOSED TREE
[gecko.git] / layout / tables / reftests / 1220621-2b.html
blob379857235b92bfd6a1296fb8194712bdb5f7853a
1 <!DOCTYPE html>
2 <style>
3 table {
4 table-layout: fixed;
5 border: 1px solid black;
6 width: 300px;
8 td {
9 background: yellow;
10 border: 1px solid purple;
12 </style>
13 <table>
14 <colgroup>
15 <col>
16 <col>
17 </colgroup>
18 <colgroup>
19 <col>
20 <col>
21 </colgroup>
22 <tbody>
23 <td>One</td>
24 </tbody>
25 </table>
26 <script>
27 var t = document.querySelector("table");
28 // Flush layout
29 var width = t.offsetWidth;
30 // Remove the first col
31 document.querySelector("colgroup").remove();
32 </script>