chromium/third_party/blink/web_tests/fast/dynamic/float-remove-above-line-2.html

<p>
    Another test for <i><a href="https://bugs.webkit.org/show_bug.cgi?id=18722">https://bugs.webkit.org/show_bug.cgi?id=18722</a>
    Webkit Nightly Build crashes when visiting i has a hotdog</i>.
</p>
<p>
    The test passes if it does not crash.
</p>
<div>
    foo<br><div id="float-1" style="float: left;"></div><br>
    <div id="float-2" style="float: right;"></div>
</div>
<script>
    if (window.testRunner)
        testRunner.dumpAsText();

    document.body.offsetTop;
    document.getElementById("float-1").style.display = "none";
    document.body.offsetTop;
    document.getElementById("float-2").style.display = "none";
</script>