chromium/third_party/blink/web_tests/fast/dynamic/float-in-trailing-whitespace-after-last-line-break.html

<p>
    Test for <i><a href="https://bugs.webkit.org/show_bug.cgi?id=19278">https://bugs.webkit.org/show_bug.cgi?id=19278</a>
    REGRESSION (r31114-r31132): image float disappears on refresh</i>.
</p>
<div id="target">
    Somewhere on this page, there should be<br><br>
    <div style="float: left; width: 100px; height: 100px; background-color: green;"></div>
    <div style="width: 150px;">a green square.</div>
</div>
<script>
    test = function()
    {
        document.body.offsetTop;
        document.getElementById("target").style.marginTop = "16px";
    }
    test();
</script>