| Index: third_party/WebKit/LayoutTests/animations/simultaneous-start-transform.html
|
| diff --git a/third_party/WebKit/LayoutTests/animations/simultaneous-start-transform.html b/third_party/WebKit/LayoutTests/animations/simultaneous-start-transform.html
|
| index 4a8e41337467d17c39551a5627f41f3f007bc18d..ef385f3fdb2de24f9d3550f817340aba68851ce1 100644
|
| --- a/third_party/WebKit/LayoutTests/animations/simultaneous-start-transform.html
|
| +++ b/third_party/WebKit/LayoutTests/animations/simultaneous-start-transform.html
|
| @@ -12,11 +12,11 @@
|
| height: 100px;
|
| width: 100px;
|
| background-color: blue;
|
| - -webkit-animation-duration: 10s;
|
| - -webkit-animation-timing-function: linear;
|
| - -webkit-animation-name: anim;
|
| + animation-duration: 10s;
|
| + animation-timing-function: linear;
|
| + animation-name: anim;
|
| }
|
| - @-webkit-keyframes anim {
|
| + @keyframes anim {
|
| from { transform: rotate(0deg); }
|
| to { transform: rotate(360deg); }
|
| }
|
| @@ -34,15 +34,15 @@
|
|
|
| const expectedValues = [
|
| // [time, element-id, property, expected-value, tolerance]
|
| - [2, "box1", "webkitTransform", [ 0.309017, 0.951057, -0.951057, 0.309017, 0, 0 ], 0.05],
|
| - [2, "box2", "webkitTransform", [ 0.309017, 0.951057, -0.951057, 0.309017, 0, 0 ], 0.05],
|
| - [2, ["box1", "box2"], "webkitTransform", "", 0],
|
| - [5, "box1", "webkitTransform", [ -1, 0, 0, -1, 0, 0 ], 0.05],
|
| - [5, "box2", "webkitTransform", [ -1, 0, 0, -1, 0, 0 ], 0.05],
|
| - [5, ["box1", "box2"], "webkitTransform", "", 0],
|
| - [8, "box1", "webkitTransform", [ 0.309017, -0.951057, 0.951057, 0.309017, 0, 0 ], 0.05],
|
| - [8, "box2", "webkitTransform", [ 0.309017, -0.951057, 0.951057, 0.309017, 0, 0 ], 0.05],
|
| - [8, ["box1", "box2"], "webkitTransform", "", 0],
|
| + [2, "box1", "transform", [ 0.309017, 0.951057, -0.951057, 0.309017, 0, 0 ], 0.05],
|
| + [2, "box2", "transform", [ 0.309017, 0.951057, -0.951057, 0.309017, 0, 0 ], 0.05],
|
| + [2, ["box1", "box2"], "transform", "", 0],
|
| + [5, "box1", "transform", [ -1, 0, 0, -1, 0, 0 ], 0.05],
|
| + [5, "box2", "transform", [ -1, 0, 0, -1, 0, 0 ], 0.05],
|
| + [5, ["box1", "box2"], "transform", "", 0],
|
| + [8, "box1", "transform", [ 0.309017, -0.951057, 0.951057, 0.309017, 0, 0 ], 0.05],
|
| + [8, "box2", "transform", [ 0.309017, -0.951057, 0.951057, 0.309017, 0, 0 ], 0.05],
|
| + [8, ["box1", "box2"], "transform", "", 0],
|
| ];
|
|
|
| runAnimationTest(expectedValues);
|
|
|