summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/multicol/content-change-same-height.html
blob: 825b8c88500cb52fbafbc1baac3684938740ec46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE html>
<script>
    if (window.testRunner)
        testRunner.dumpAsText();
    onload = function() {
        document.body.offsetTop;
        document.getElementById('elm').innerHTML= "x";
        document.body.offsetTop;
        document.getElementById('elm').innerHTML= "PASS";
    }
</script>
<p>No assertions should fail.</p>
<div style="-webkit-columns:2; columns:2;">
    <span id="elm">FAIL</span>
</div>