OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <style> | 4 <style> |
5 #test1 { -webkit-column-count: 2; } | 5 #test1 { -webkit-column-count: 2; } |
6 #test4 { -webkit-column-span: all; } | 6 #test4 { -webkit-column-span: all; } |
7 </style> | 7 </style> |
8 <script> | 8 <script> |
9 if (window.layoutTestController) | 9 if (window.layoutTestController) |
10 layoutTestController.dumpAsText(); | 10 layoutTestController.dumpAsText(); |
(...skipping 18 matching lines...) Expand all Loading... |
29 test3.style.display = 'table-row'; | 29 test3.style.display = 'table-row'; |
30 document.body.offsetTop; | 30 document.body.offsetTop; |
31 test2.style.display = 'inline'; | 31 test2.style.display = 'inline'; |
32 } | 32 } |
33 </script> | 33 </script> |
34 </head> | 34 </head> |
35 <body> | 35 <body> |
36 Test passes if it does not crash. | 36 Test passes if it does not crash. |
37 </body> | 37 </body> |
38 </html> | 38 </html> |
OLD | NEW |