Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / block / float / trailing-float-with-columns.html
blobb59a3f0f75ba7a409e5d956314d0e46f5deda363
1 <!DOCTYPE html>
2 <p>crbug.com/487775: PASS if no crash or assertion failure.</p>
3 <div>
4 <div id="firstChild" style="display:inline-block; width:100px;"></div>
5 <div style="display:inline-block; width:100%; height:100px;"></div>
6 <div style="-webkit-columns:2; float:right;">
7 <div style="float:left; position:relative; width:100px; height:100px;"></div>
8 <div style="-webkit-column-span:all;"></div>
9 <div id="contentAfterSpanner"></div>
10 </div>
11 </div>
12 <script>
13 if (window.testRunner)
14 testRunner.dumpAsText();
15 onload = function() {
16 document.body.offsetTop;
17 document.getElementById("contentAfterSpanner").style.display = "none";
18 document.getElementById("firstChild").style.width = "101px";
20 </script>