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

Unified Diff: ManualTests/svg-css-animate-compound.html

Issue 637763002: Unprefix usage of -webkit-transform in tests (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove duplicate transform 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: ManualTests/svg-css-animate-compound.html
diff --git a/ManualTests/svg-css-animate-compound.html b/ManualTests/svg-css-animate-compound.html
index 23b84fb6a0bccb9e4f258732293441a52c9200a8..254e54186ef6dd72d7c31c808aeed4e70d836f07 100644
--- a/ManualTests/svg-css-animate-compound.html
+++ b/ManualTests/svg-css-animate-compound.html
@@ -48,10 +48,10 @@
@-webkit-keyframes bounce {
from {
- -webkit-transform: translate(0px, 0px) scale(1) rotate(0deg);
+ transform: translate(0px, 0px) scale(1) rotate(0deg);
}
to {
- -webkit-transform: translate(75px, 25px) scale(2) rotate(45deg);
+ transform: translate(75px, 25px) scale(2) rotate(45deg);
}
}
</style>

Powered by Google App Engine
This is Rietveld 408576698