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

Unified Diff: third_party/WebKit/LayoutTests/animations/simultaneous-start-transform.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/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);

Powered by Google App Engine
This is Rietveld 408576698