Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / multicol / continuation-crash.html
blobc28fdcdc1092063efa39d4b2358b3db50323a395
1 <!DOCTYPE html>
2 <html>
3 Test passes if it does not crash.
4 <style>
5 .column-layout { -webkit-column-count: 1; }
6 .column-span-all { -webkit-column-span: all; }
7 .after-content:after { display: block; content: "" }
8 </style>
9 <div class="column-layout">
10 <span class="after-content">
11 <div></div>
12 </span>
13 <div class="column-span-all"></div>
14 </div>
15 <script>
16 if (window.testRunner)
17 testRunner.dumpAsText();
18 </script>
19 </html>