Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / table / colgroup-relative.html
blob46af15cbd3ae47d3bea3d1d0f0ca1c52d2ec1d1d
1 <p>
2 Test for <i><a href="rdar://problem/5530657">rdar://problem/5530657</a></i>.
3 </p>
4 <p>
5 This tests for a crash during relayout when a &lt;colgroup> is relative-positioned.
6 </p>
7 <table id="table">
8 <colgroup style="position: relative;"></colgroup>
9 </table>
10 <script>
11 if (window.testRunner)
12 testRunner.dumpAsText();
14 document.body.offsetTop;
15 document.getElementById("table").style.fontSize = "20px";
16 </script>