Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / table / columngroup-inside-columngroup.html
blobbf8ce38830d4c011eb38c2fa556b4946a2b4b77b
1 <!DOCTYPE html>
2 <p>Test for bug <a href="http://webkit.org/b/87314">87314</a>: Crash in LayoutTableCol::nextColumn</p>
3 <table>
4 <colgroup>
5 </colgroup>
6 <tbody>
7 <td></td>
8 </tbody>
9 </table>
10 <script>
11 if (window.testRunner)
12 testRunner.dumpAsText();
14 var colgroup = document.createElement("colgroup");
15 document.getElementsByTagName("colgroup")[0].appendChild(colgroup);
16 document.body.offsetTop;
17 document.body.appendChild(document.createTextNode("PASSED, this test didn't crash or ASSERT."));
18 </script>