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

Unified Diff: LayoutTests/animations/missing-keyframe-properties-timing-function.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-keyframe-properties-timing-function.html
diff --git a/LayoutTests/animations/missing-keyframe-properties-timing-function.html b/LayoutTests/animations/missing-keyframe-properties-timing-function.html
index 6f2dbeb4eedda86dec269e3b653a850ff86b3528..fd352dead43be53dc905c2ee1caada6c8651d549 100644
--- a/LayoutTests/animations/missing-keyframe-properties-timing-function.html
+++ b/LayoutTests/animations/missing-keyframe-properties-timing-function.html
@@ -39,17 +39,17 @@
@-webkit-keyframes move2 {
from {
opacity: 0;
- -webkit-transform: translateX(100px);
+ transform: translateX(100px);
}
25% {
opacity: 0.25;
}
50% {
- -webkit-transform: translateX(200px);
+ transform: translateX(200px);
-webkit-animation-timing-function: linear;
}
to {
- -webkit-transform: translateX(400px);
+ transform: translateX(400px);
}
}
« no previous file with comments | « LayoutTests/animations/missing-keyframe-properties.html ('k') | LayoutTests/animations/missing-values-first-keyframe.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698