| Index: LayoutTests/animations/change-transform-style-during-animation.html
|
| diff --git a/LayoutTests/animations/change-transform-style-during-animation.html b/LayoutTests/animations/change-transform-style-during-animation.html
|
| index a457d763ff65fd48db2fd7839e750397ec67c265..d4b17f249fc21bd54e755feeebfa08ef5ef8397f 100644
|
| --- a/LayoutTests/animations/change-transform-style-during-animation.html
|
| +++ b/LayoutTests/animations/change-transform-style-during-animation.html
|
| @@ -3,7 +3,7 @@
|
| <head>
|
| <style>
|
| #container {
|
| - -webkit-transform: translateZ(0px);
|
| + transform: translateZ(0px);
|
| -webkit-perspective: 400;
|
| }
|
|
|
| @@ -21,7 +21,7 @@
|
| height: 100px;
|
| width: 100px;
|
| background-color: red;
|
| - -webkit-transform: translateZ(10px);
|
| + transform: translateZ(10px);
|
| -webkit-transform-style: preserve-3d;
|
| -webkit-animation-duration: 100ms;
|
| -webkit-animation-fill-mode: both;
|
| @@ -30,8 +30,8 @@
|
| }
|
|
|
| @-webkit-keyframes anim {
|
| - from { -webkit-transform: translateZ(0px) translateX(0px); }
|
| - to { -webkit-transform: translateZ(200px) translateX(-200px); }
|
| + from { transform: translateZ(0px) translateX(0px); }
|
| + to { transform: translateZ(200px) translateX(-200px); }
|
| }
|
| </style>
|
|
|
|
|