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

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

Powered by Google App Engine
This is Rietveld 408576698