summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/dynamic/float-in-trailing-whitespace-after-last-line-break-2.html
blob: 69e60c14058688e5e6bf9a88fee50a9a05e928ea (plain)
1
2
3
4
5
6
7
8
9
10
<img style="float: left; width: 100px; height: 100px;">
<div>
    <br style="clear: both;">
    <img style="float: left; width: 100px; height: 100px;">
</div>
<img id="target" style="float: left; width: 100px; height: 0; background-color: blue;">
<script>
    document.body.offsetTop;
    document.getElementById("target").style.height = "100px";
</script>