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

Unified Diff: LayoutTests/animations/missing-values-last-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-last-keyframe.html
diff --git a/LayoutTests/animations/missing-values-last-keyframe.html b/LayoutTests/animations/missing-values-last-keyframe.html
index aa66e3eee7e043ec3a34959a1ec5a836114f2cc4..b1732e9757058b7ae2b0700b6d6ec2fad1d48fe8 100644
--- a/LayoutTests/animations/missing-values-last-keyframe.html
+++ b/LayoutTests/animations/missing-values-last-keyframe.html
@@ -34,7 +34,7 @@
}
#box2 {
- -webkit-transform: translateX(200px);
+ transform: translateX(200px);
-webkit-animation: move-transform 2s linear;
}
@@ -57,11 +57,11 @@
@-webkit-keyframes move-transform {
0% {
- -webkit-transform: translateX(0);
+ transform: translateX(0);
opacity: 0;
}
50% {
- -webkit-transform: translateX(0);
+ transform: translateX(0);
opacity: 1;
}
75% {

Powered by Google App Engine
This is Rietveld 408576698