OLD | NEW |
1 <script src="../resources/testharness.js"></script> | 1 <script src="../../resources/testharness.js"></script> |
2 <script src="../resources/testharnessreport.js"></script> | 2 <script src="../../resources/testharnessreport.js"></script> |
3 <style> | 3 <style> |
4 @keyframes test { | 4 @keyframes test { |
5 to { | 5 to { |
6 -webkit-perspective-origin-x: 1px; | 6 -webkit-perspective-origin-x: 1px; |
7 -webkit-perspective-origin-y: 1px; | 7 -webkit-perspective-origin-y: 1px; |
8 -webkit-transform-origin-x: 1px; | 8 -webkit-transform-origin-x: 1px; |
9 -webkit-transform-origin-y: 1px; | 9 -webkit-transform-origin-y: 1px; |
10 -webkit-transform-origin-z: 1px; | 10 -webkit-transform-origin-z: 1px; |
11 } | 11 } |
12 } | 12 } |
13 #target { | 13 #target { |
14 animation: test 1s; | 14 animation: test 1s; |
15 } | 15 } |
16 </style> | 16 </style> |
17 <div id="target"></div> | 17 <div id="target"></div> |
18 <script> | 18 <script> |
19 test(function() { | 19 test(function() { |
20 getComputedStyle(target); | 20 getComputedStyle(target); |
21 }, 'This test passes if it does not crash'); | 21 }, 'This test passes if it does not crash'); |
22 </script> | 22 </script> |
OLD | NEW |