Index: third_party/WebKit/LayoutTests/animations/animation-offscreen-to-onscreen.html |
diff --git a/third_party/WebKit/LayoutTests/animations/animation-offscreen-to-onscreen.html b/third_party/WebKit/LayoutTests/animations/animation-offscreen-to-onscreen.html |
index a5d14f0cdc58e30c675cedaa76997dd9c8ae0a57..2be0703ea74cb2be89cd60ab523a87c7060ee974 100644 |
--- a/third_party/WebKit/LayoutTests/animations/animation-offscreen-to-onscreen.html |
+++ b/third_party/WebKit/LayoutTests/animations/animation-offscreen-to-onscreen.html |
@@ -14,12 +14,12 @@ |
margin: 0; |
background-color: green; |
transform: translate(-2000px, 0px); |
- -webkit-animation-duration: 1s; |
- -webkit-animation-direction: normal; |
- -webkit-animation-timing-function: linear; |
- -webkit-animation-name: anim; |
+ animation-duration: 1s; |
+ animation-direction: normal; |
+ animation-timing-function: linear; |
+ animation-name: anim; |
} |
- @-webkit-keyframes anim { |
+ @keyframes anim { |
0% { transform: translate(100px, 0px); } |
100% { transform: translate(100px, 0px); } |
} |
@@ -32,7 +32,7 @@ |
const expectedValues = [ |
// [time, element-id, property, expected-value, tolerance] |
- [0.5, "box", "webkitTransform", [1, 0, 0, 1, 100, 0], 0.002], |
+ [0.5, "box", "transform", [1, 0, 0, 1, 100, 0], 0.002], |
]; |
const doPixelTest = true; |