| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <style> | 4 <style> |
| 5 #test0 { | 5 #test0 { |
| 6 counter-reset: c; | 6 counter-reset: c; |
| 7 } | 7 } |
| 8 #test0::after { | 8 #test0::after { |
| 9 content: counter(c); | 9 content: counter(c); |
| 10 counter-reset: c; | 10 counter-reset: c; |
| 11 } | 11 } |
| 12 #test1::after { | 12 #test1::after { |
| 13 content: counter(c); | 13 content: counter(c); |
| 14 counter-reset: c; | 14 counter-reset: c; |
| 15 } | 15 } |
| 16 #test2 { | 16 #test2 { |
| 17 counter-reset: c; | 17 counter-reset: c; |
| 18 height: 1px; | 18 height: 1px; |
| 19 width: 1px; | 19 width: 1px; |
| 20 overflow-x: scroll; | 20 overflow-x: scroll; |
| 21 -webkit-perspective: 1; | 21 perspective: 1; |
| 22 } | 22 } |
| 23 #test3 { | 23 #test3 { |
| 24 content: counter(c); | 24 content: counter(c); |
| 25 -webkit-animation-name: a; | 25 animation-name: a; |
| 26 -webkit-animation-duration: 0.01s; | 26 animation-duration: 0.01s; |
| 27 } | 27 } |
| 28 </style> | 28 </style> |
| 29 <script> | 29 <script> |
| 30 if (window.testRunner) { | 30 if (window.testRunner) { |
| 31 testRunner.dumpAsText(); | 31 testRunner.dumpAsText(); |
| 32 testRunner.waitUntilDone(); | 32 testRunner.waitUntilDone(); |
| 33 } | 33 } |
| 34 | 34 |
| 35 function finish() { | 35 function finish() { |
| 36 document.body.innerHTML = "WebKit Bug 87445 - LayoutTableSection::paintCell.
<br/>Test passes if it does not crash."; | 36 document.body.innerHTML = "WebKit Bug 87445 - LayoutTableSection::paintCell.
<br/>Test passes if it does not crash."; |
| (...skipping 16 matching lines...) Expand all Loading... |
| 53 test2.appendChild(test3); | 53 test2.appendChild(test3); |
| 54 test2.style.display = 'table-footer-group'; | 54 test2.style.display = 'table-footer-group'; |
| 55 document.body.offsetTop; | 55 document.body.offsetTop; |
| 56 setTimeout("finish()", 10); | 56 setTimeout("finish()", 10); |
| 57 } | 57 } |
| 58 </script> | 58 </script> |
| 59 </head> | 59 </head> |
| 60 <body> | 60 <body> |
| 61 </body> | 61 </body> |
| 62 </html> | 62 </html> |
| OLD | NEW |