| Index: third_party/WebKit/LayoutTests/animations/3d/transform-perspective.html
|
| diff --git a/third_party/WebKit/LayoutTests/animations/3d/transform-perspective.html b/third_party/WebKit/LayoutTests/animations/3d/transform-perspective.html
|
| index d82c43182bfccd493f472ebcd95f97fb97fcda39..b64fdb676587ef2dc3e4c75cb224c30fcb66133d 100644
|
| --- a/third_party/WebKit/LayoutTests/animations/3d/transform-perspective.html
|
| +++ b/third_party/WebKit/LayoutTests/animations/3d/transform-perspective.html
|
| @@ -10,19 +10,19 @@
|
| }
|
|
|
| #box {
|
| - -webkit-animation: anim 2s linear;
|
| + animation: anim 2s linear;
|
| }
|
|
|
| #box2 {
|
| - -webkit-animation: anim2 2s linear;
|
| + animation: anim2 2s linear;
|
| }
|
|
|
| - @-webkit-keyframes anim {
|
| + @keyframes anim {
|
| from { transform: perspective(100px); }
|
| to { transform: perspective(200px); }
|
| }
|
|
|
| - @-webkit-keyframes anim2 {
|
| + @keyframes anim2 {
|
| from { transform: perspective(1000px); }
|
| to { transform: none; }
|
| }
|
| @@ -38,7 +38,7 @@
|
| function setupTest()
|
| {
|
| var box = document.getElementById('box');
|
| - box.style.webkitTransform = 'perspective(1000px) rotateX(90deg)';
|
| + box.style.transform = 'perspective(1000px) rotateX(90deg)';
|
| }
|
|
|
| runAnimationTest(expectedValues);
|
|
|