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

Unified Diff: LayoutTests/animations/missing-values-first-keyframe.html

Issue 637763002: Unprefix usage of -webkit-transform in tests (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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: LayoutTests/animations/missing-values-first-keyframe.html
diff --git a/LayoutTests/animations/missing-values-first-keyframe.html b/LayoutTests/animations/missing-values-first-keyframe.html
index 5c0db00e83899e7ad5bb9c7120e1620ed24d35d5..e8368ed44cbebfe75d9d903bf4053e77a889453e 100644
--- a/LayoutTests/animations/missing-values-first-keyframe.html
+++ b/LayoutTests/animations/missing-values-first-keyframe.html
@@ -34,7 +34,7 @@
}
#box2 {
- -webkit-transform: translateX(200px);
+ transform: translateX(200px);
-webkit-animation: move-transform 2s linear;
}
@@ -63,11 +63,11 @@
opacity: 1;
}
50% {
- -webkit-transform: translateX(0);
+ transform: translateX(0);
opacity: 1;
}
100% {
- -webkit-transform: translateX(0);
+ transform: translateX(0);
opacity: 0;
}
}

Powered by Google App Engine
This is Rietveld 408576698