Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(328)

Unified Diff: third_party/WebKit/LayoutTests/animations/animation-offscreen-to-onscreen.html

Issue 2970883003: Separate out animations tests with prefixing (Closed)
Patch Set: Rebaseline virtual/threaded version of test too Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;

Powered by Google App Engine
This is Rietveld 408576698