| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <style> | 2 <style> |
| 3 p { | 3 p { |
| 4 -webkit-animation-name: test; | 4 animation-name: test; |
| 5 -webkit-animation-fill-mode: backwards; | 5 animation-fill-mode: backwards; |
| 6 /* Approx 2^54 */ | 6 /* Approx 2^54 */ |
| 7 -webkit-animation-delay: 18000000000000000s; | 7 animation-delay: 18000000000000000s; |
| 8 } | 8 } |
| 9 @-webkit-keyframes test { | 9 @keyframes test { |
| 10 0% { | 10 0% { |
| 11 } | 11 } |
| 12 } | 12 } |
| 13 </style> | 13 </style> |
| 14 <script> | 14 <script> |
| 15 if (window.testRunner) | 15 if (window.testRunner) |
| 16 testRunner.dumpAsText(); | 16 testRunner.dumpAsText(); |
| 17 </script> | 17 </script> |
| 18 <body> | 18 <body> |
| 19 <p>This tests an animation with zero duration and a very large start delay. See
http:://crbug.com/324323. | 19 <p>This tests an animation with zero duration and a very large start delay. See
http:://crbug.com/324323. |
| 20 <p>This test passes if it doesn't crash. | 20 <p>This test passes if it doesn't crash. |
| 21 <body | 21 <body |
| OLD | NEW |