Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <p>Turn a block with an absolutely positioned video into a multicol container, t hen 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> | |
| 7 | |
| 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> | |
| OLD | NEW |