Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / table / table-section-split-with-after-content.html
blobeaa5905a893ef882e94db2ca5f6f58a06104181b
1 <!DOCTYPE html>
2 <html style="font-family: Ahem; font-size: 50px; -webkit-font-smoothing: none;">
3 <body>
4 <style>
5 #test::after {
6 display: table-row;
7 content: '';
9 </style>
10 <script>
11 document.body.offsetTop;
12 test = document.createElement('div');
13 test.setAttribute('id', 'test');
14 document.body.appendChild(test)
15 test.appendChild(document.createElement('thead'));
16 document.body.offsetTop;
17 test.appendChild(document.createElement('div'));
18 </script>
19 </body>
20 </html>