Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / block / block-add-child-crash.html
blobed50efb4b778549b8ba353c17493c7be059d4b4c
1 <!DOCTYPE html>
2 <html>
3 <body>
4 WebKit Bug 84606 - ASSERT(beforeChildAnonymousContainer->isTable()); fails in LayoutBlockFlow::addChildIgnoringAnonymousColumnBlocks.<br />
5 The test passes if it doesn't CRASH nor ASSERT.
6 <style>
7 .container { -webkit-column-count: 1; }
8 .columnSpan { -webkit-column-span: all; }
9 </style>
10 <li class="container">
11 <blockquote id="test">
12 <table class="columnSpan"></table>
13 </blockquote>
14 <textarea></textarea>
15 </li>
16 <script>
17 if (window.testRunner)
18 testRunner.dumpAsText();
20 document.body.offsetTop;
21 var test = document.getElementById("test");
22 test.outerHTML = "PASS";
23 </script>
24 </body>
25 </html>