Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / fast / table / table-section-split-with-after-content.html
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: '';
8 }
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>