Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / table / table-cell-split.html
blob3c8ded264373f41d4192dc8d39b4a8dc7daea4f5
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('td'));
9 td = document.createElement('td');
10 test.appendChild(td);
11 document.body.offsetTop;
12 test.insertBefore(document.createElement('div'), td);
13 </script>
14 </body>
15 </html>