OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <style> | 4 <style> |
5 #test1 { | 5 #test1 { |
6 text-indent: -1em; | 6 text-indent: -1em; |
7 content: counter(c); | 7 content: counter(c); |
8 -webkit-column-count: 1; | 8 -webkit-column-count: 1; |
9 } | 9 } |
10 #test3 { | 10 #test3 { |
(...skipping 20 matching lines...) Expand all Loading... |
31 document.body.offsetTop; | 31 document.body.offsetTop; |
32 document.body.style.zoom = 2; | 32 document.body.style.zoom = 2; |
33 } | 33 } |
34 window.onload = crash; | 34 window.onload = crash; |
35 </script> | 35 </script> |
36 </head> | 36 </head> |
37 <body> | 37 <body> |
38 Test passes if it does not crash. | 38 Test passes if it does not crash. |
39 </body> | 39 </body> |
40 </html> | 40 </html> |
OLD | NEW |