| Index: LayoutTests/animations/missing-keyframe-properties-timing-function.html
|
| diff --git a/LayoutTests/animations/missing-keyframe-properties-timing-function.html b/LayoutTests/animations/missing-keyframe-properties-timing-function.html
|
| index 6f2dbeb4eedda86dec269e3b653a850ff86b3528..fd352dead43be53dc905c2ee1caada6c8651d549 100644
|
| --- a/LayoutTests/animations/missing-keyframe-properties-timing-function.html
|
| +++ b/LayoutTests/animations/missing-keyframe-properties-timing-function.html
|
| @@ -39,17 +39,17 @@
|
| @-webkit-keyframes move2 {
|
| from {
|
| opacity: 0;
|
| - -webkit-transform: translateX(100px);
|
| + transform: translateX(100px);
|
| }
|
| 25% {
|
| opacity: 0.25;
|
| }
|
| 50% {
|
| - -webkit-transform: translateX(200px);
|
| + transform: translateX(200px);
|
| -webkit-animation-timing-function: linear;
|
| }
|
| to {
|
| - -webkit-transform: translateX(400px);
|
| + transform: translateX(400px);
|
| }
|
| }
|
|
|
|
|