OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 Test passes if it does not crash. | 3 Test passes if it does not crash. |
4 <style> | 4 <style> |
5 .class1:nth-child(-n+6) { float: left; padding-bottom: 100px; } | 5 .class1:nth-child(-n+6) { float: left; padding-bottom: 100px; } |
6 .class2:nth-child(even) { -webkit-backface-visibility: hidden; -webkit-column-sp
an: all; } | 6 .class2:nth-child(even) { -webkit-backface-visibility: hidden; -webkit-column-sp
an: all; } |
7 .class3 { -webkit-column-count: 65536; } | 7 .class3 { -webkit-column-count: 65536; } |
8 </style> | 8 </style> |
9 <script> | 9 <script> |
10 if (window.testRunner) { | 10 if (window.testRunner) { |
(...skipping 21 matching lines...) Expand all Loading... |
32 test7.appendChild(test5); | 32 test7.appendChild(test5); |
33 document.documentElement.offsetTop; | 33 document.documentElement.offsetTop; |
34 setTimeout('test3.appendChild(test4);', 0); | 34 setTimeout('test3.appendChild(test4);', 0); |
35 setTimeout('test2.appendChild(test7);', 2); | 35 setTimeout('test2.appendChild(test7);', 2); |
36 setTimeout('if (window.testRunner) testRunner.notifyDone();', 4); | 36 setTimeout('if (window.testRunner) testRunner.notifyDone();', 4); |
37 } | 37 } |
38 | 38 |
39 window.onload = crash; | 39 window.onload = crash; |
40 </script> | 40 </script> |
41 </html> | 41 </html> |
OLD | NEW |