Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / table / table-split-inside-table.html
blobf12f33a1a4490279b25af11fa88ba7e6ae328e50
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
5 #test1 { -webkit-column-count: 2; }
6 #test4 { -webkit-column-span: all; }
7 </style>
8 <script>
9 if (window.testRunner)
10 testRunner.dumpAsText();
12 window.onload = function() {
13 test1 = document.createElement('div');
14 test1.setAttribute('id', 'test1');
15 document.body.appendChild(test1);
16 test2 = document.createElement('div');
17 test3 = document.createElement('div');
18 test1.appendChild(test2);
19 test1.appendChild(test3);
20 test4 = document.createElement('div');
21 test4.setAttribute('id', 'test4');
22 test1.appendChild(test4);
23 test4.style.display = 'table-footer-group';
24 document.body.offsetTop
25 test3.style.display = 'table-row';
26 document.body.offsetTop;
27 test3.style.display = 'table-column-group';
28 document.body.offsetTop;
29 test3.style.display = 'table-row';
30 document.body.offsetTop;
31 test2.style.display = 'inline';
33 </script>
34 </head>
35 <body>
36 Test passes if it does not crash.
37 </body>
38 </html>