OLD | NEW |
1 <html> | 1 <html> |
2 <head> | 2 <head> |
3 <style> | 3 <style> |
4 #test1 { -webkit-column-count: 1; } | 4 #test1 { -webkit-column-count: 1; } |
5 #test2 { display: block; } | 5 #test2 { display: block; } |
6 #test3::after { display: block; content: "A"; } | 6 #test3::after { display: block; content: "A"; } |
7 #test4 { -webkit-column-span: all; } | 7 #test4 { -webkit-column-span: all; } |
8 </style> | 8 </style> |
9 <script> | 9 <script> |
10 if (window.layoutTestController) | 10 if (window.layoutTestController) |
(...skipping 14 matching lines...) Expand all Loading... |
25 document.body.offsetTop; | 25 document.body.offsetTop; |
26 test4.style.display='block'; | 26 test4.style.display='block'; |
27 } | 27 } |
28 window.onload = runTest | 28 window.onload = runTest |
29 </script> | 29 </script> |
30 </head> | 30 </head> |
31 <body> | 31 <body> |
32 Test passes if it does not crash. | 32 Test passes if it does not crash. |
33 </body> | 33 </body> |
34 </html> | 34 </html> |
OLD | NEW |