Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / multicol / dynamic / insert-before-sole-abspos.html
blob63d341703bd8efcd190b843486af0d04881617b3
1 <!DOCTYPE html>
2 <p>Insert an in-flow object before an absolutely positioned element that up until now was the only
3 multicol child.</p>
4 <p>PASS if no assertion failure or crash.</p>
5 <div style="-webkit-columns:2;">
6 <div id="elm" style="display:none;"></div>
7 <div style="position:absolute;"></div>
8 </div>
9 <script>
10 if (window.testRunner)
11 testRunner.dumpAsText();
12 onload = function() {
13 document.body.offsetTop;
14 document.getElementById('elm').style.display = 'block';
16 </script>