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

Unified Diff: third_party/WebKit/LayoutTests/animations/missing-values-first-keyframe.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/missing-values-first-keyframe.html
diff --git a/third_party/WebKit/LayoutTests/animations/missing-values-first-keyframe.html b/third_party/WebKit/LayoutTests/animations/missing-values-first-keyframe.html
index e8368ed44cbebfe75d9d903bf4053e77a889453e..06afdd955fd26d21560c0820cd95e5eed57bda07 100644
--- a/third_party/WebKit/LayoutTests/animations/missing-values-first-keyframe.html
+++ b/third_party/WebKit/LayoutTests/animations/missing-values-first-keyframe.html
@@ -30,15 +30,15 @@
#box1 {
left: 200px;
- -webkit-animation: move-left 2s linear;
+ animation: move-left 2s linear;
}
#box2 {
transform: translateX(200px);
- -webkit-animation: move-transform 2s linear;
+ animation: move-transform 2s linear;
}
- @-webkit-keyframes move-left {
+ @keyframes move-left {
0% {
opacity: 1;
}
@@ -55,7 +55,7 @@
}
}
- @-webkit-keyframes move-transform {
+ @keyframes move-transform {
0% {
opacity: 1;
}
@@ -78,7 +78,7 @@
const expectedValues = [
// [time, element-id, property, expected-value, tolerance]
[0.5, "box1", "left", 100, 15],
- [0.5, "box2", "webkitTransform.4", 100, 15],
+ [0.5, "box2", "transform.4", 100, 15],
];
var doPixelTest = true;

Powered by Google App Engine
This is Rietveld 408576698