chromium/third_party/blink/web_tests/fast/block/multicol-moves-children-with-nested-floats.html

<!DOCTYPE html>
<p>crbug.com/588178: PASS if no crash or assertion failure.</p>
<div id="container">
    <div></div>
    <div id="block2">
        <div id="removeMe" style="float:left; width:300px; height:300px;"></div>
        <textarea style="display:block;"></textarea>
    </div>
</div>
<script>
if (window.testRunner)
    testRunner.dumpAsText();
document.body.offsetTop;
document.getElementById("container").style.columns = "2";
document.getElementById("block2").style.webkitWritingMode = "vertical-lr";
document.getElementById("removeMe").style.display = "none";
</script>