| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 | 2 |
| 3 <style> | 3 <style> |
| 4 p { | 4 p { |
| 5 -webkit-transform: rotateX(0deg); | 5 transform: rotateX(0deg); |
| 6 -webkit-animation: 1s empty; | 6 -webkit-animation: 1s empty; |
| 7 } | 7 } |
| 8 @-webkit-keyframes empty { | 8 @-webkit-keyframes empty { |
| 9 } | 9 } |
| 10 </style> | 10 </style> |
| 11 | 11 |
| 12 <p>Tests an animation with no keyframes, applied to an element which is composit
ed. | 12 <p>Tests an animation with no keyframes, applied to an element which is composit
ed. |
| 13 <p>This test passes if it doesn't crash. | 13 <p>This test passes if it doesn't crash. |
| 14 | 14 |
| 15 <script> | 15 <script> |
| 16 if (window.testRunner) | 16 if (window.testRunner) |
| 17 testRunner.dumpAsText(); | 17 testRunner.dumpAsText(); |
| 18 </script> | 18 </script> |
| OLD | NEW |