OLD | NEW |
1 <!doctype html> | 1 <!doctype html> |
2 | 2 |
3 <style> | 3 <style> |
4 @keyframes anim { | 4 @keyframes anim { |
5 from { animation-timing-function: unset; } | 5 from { animation-timing-function: unset; } |
6 50% { animation-timing-function: inherit; } | 6 50% { animation-timing-function: inherit; } |
7 to { animation-timing-function: initial; } | 7 to { animation-timing-function: initial; } |
8 } | 8 } |
9 </style> | 9 </style> |
10 | 10 |
11 <div style="animation: anim 10s">This test passes if it doesn't crash</div> | 11 <div style="animation: anim 10s">This test passes if it doesn't crash</div> |
12 | 12 |
13 <script> | 13 <script> |
14 if (window.testRunner) | 14 if (window.testRunner) |
15 testRunner.dumpAsText(); | 15 testRunner.dumpAsText(); |
16 </script> | 16 </script> |
OLD | NEW |