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