Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / multicol / dynamic / block-with-abspos-video-becomes-multicol-crash.html
bloba2743ac4d961dba10fc49c6b5c4fdeecc5e5dae9
1 <!DOCTYPE html>
2 <p>Turn a block with an absolutely positioned video into a multicol container, then remove the video.</p>
3 <p>PASS if no crash or assertion failure.</p>
4 <div id="parent">
5 <video id="child" style="position:absolute;"></video>
6 </div>
8 <script>
9 if (window.testRunner)
10 testRunner.dumpAsText();
11 document.body.offsetTop;
12 document.getElementById("parent").style.webkitColumns = "2";
13 document.body.offsetTop;
14 document.getElementById("child").style.display = "none";
15 </script>