| Index: third_party/WebKit/LayoutTests/animations/opacity-transform-animation.html
|
| diff --git a/third_party/WebKit/LayoutTests/animations/opacity-transform-animation.html b/third_party/WebKit/LayoutTests/animations/opacity-transform-animation.html
|
| index 8852502354daad82734c9f2aec1def72df9d76a4..a49da48cc0ba12e85f10e5b4bb6fd6e0905a4e3f 100644
|
| --- a/third_party/WebKit/LayoutTests/animations/opacity-transform-animation.html
|
| +++ b/third_party/WebKit/LayoutTests/animations/opacity-transform-animation.html
|
| @@ -11,12 +11,12 @@
|
| }
|
| #box {
|
| background-color: green;
|
| - -webkit-animation-name: move;
|
| - -webkit-animation-duration: 1s;
|
| - -webkit-animation-timing-function: linear;
|
| - -webkit-animation-iteration-count: 1;
|
| + animation-name: move;
|
| + animation-duration: 1s;
|
| + animation-timing-function: linear;
|
| + animation-iteration-count: 1;
|
| }
|
| - @-webkit-keyframes move {
|
| + @keyframes move {
|
| from {
|
| transform: translateX(0) scale(1);
|
| opacity: 0.0;
|
| @@ -36,7 +36,7 @@
|
|
|
| const expectedValues = [
|
| // [time, element-id, property, expected-value, tolerance]
|
| - [0.5, "box", "webkitTransform.4", 200, 5],
|
| + [0.5, "box", "transform.4", 200, 5],
|
| ];
|
|
|
| var disablePauseAnimationAPI = false;
|
|
|