summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/table/colgroup-relative.html
blob: 46af15cbd3ae47d3bea3d1d0f0ca1c52d2ec1d1d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<p>
    Test for <i><a href="rdar://problem/5530657">rdar://problem/5530657</a></i>.
</p>
<p>
    This tests for a crash during relayout when a &lt;colgroup> is relative-positioned.
</p>
<table id="table">
    <colgroup style="position: relative;"></colgroup>
</table>
<script>
    if (window.testRunner)
        testRunner.dumpAsText();

    document.body.offsetTop;
    document.getElementById("table").style.fontSize = "20px";
</script>