Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / table / table-section-split.html
blobccf39ae4a2ce69a6e8bf61c632cf0117c06b4cad
1 <!DOCTYPE html>
2 <html style="font-family: Ahem; font-size: 50px; -webkit-font-smoothing: none;">
3 <body>
4 <script>
5 document.body.offsetTop;
6 test = document.createElement('div');
7 document.body.appendChild(test)
8 test.appendChild(document.createElement('thead'));
9 tr = document.createElement('tr');
10 test.appendChild(tr);
11 document.body.offsetTop;
12 test.insertBefore(document.createElement('div'), tr);
13 </script>
14 </body>
15 </html>