Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / dynamic / containing-block-change.html
blobb323508486dfd688fa00fbf1f35bf1af20c5d229
1 <script>
2 function test()
4 document.body.offsetTop; // force layout
5 var t = document.getElementById('t');
6 t.style.position = 'relative';
7 document.body.offsetTop; // force layout
8 t.lastChild.removeChild(t.lastChild.lastChild);
10 </script>
11 <body onload="test()">
12 <p>
13 This is a regression test for <i><a href="http://bugs.webkit.org/show_bug.cgi?id=11672">http://bugs.webkit.org/show_bug.cgi?id=11672</a>
14 REGRESSION (r17068): Repro crash due to painting without layout</i>. It should not crash.
15 </p>
16 <table id = "t">
17 <tr>
18 <td>
19 <div style="position: absolute;">Lorem ipsum</div>
20 </td>
21 </tr>
22 <tr>
23 <td></td></tr></table>
24 </body>