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

Unified Diff: LayoutTests/animations/missing-keyframe-properties.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.html
diff --git a/LayoutTests/animations/missing-keyframe-properties.html b/LayoutTests/animations/missing-keyframe-properties.html
index 88c7f4189672eaf994825c4c54076a609000c18e..d392b65f21371ad40b1ddf13825f10c24ec15d68 100644
--- a/LayoutTests/animations/missing-keyframe-properties.html
+++ b/LayoutTests/animations/missing-keyframe-properties.html
@@ -33,13 +33,13 @@
}
@-webkit-keyframes move2 {
from {
- -webkit-transform: translateX(0);
+ transform: translateX(0);
}
50% {
opacity: 0;
}
to {
- -webkit-transform: translateX(400px);
+ transform: translateX(400px);
}
}

Powered by Google App Engine
This is Rietveld 408576698