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

Unified Diff: LayoutTests/compositing/animation/busy-indicator.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/compositing/animation/busy-indicator.html
diff --git a/LayoutTests/compositing/animation/busy-indicator.html b/LayoutTests/compositing/animation/busy-indicator.html
index f8234f9d5b00a5d2271f809586cc6c352d4f8a74..a3cac1a7a880046d9230491abc52ef4584dc612a 100644
--- a/LayoutTests/compositing/animation/busy-indicator.html
+++ b/LayoutTests/compositing/animation/busy-indicator.html
@@ -53,23 +53,23 @@
@-webkit-keyframes spinner {
0% {
- -webkit-transform: scale(0.7);
+ transform: scale(0.7);
opacity: 1;
}
10% {
- -webkit-transform: scale(1);
+ transform: scale(1);
opacity: 1;
}
25% {
- -webkit-transform: scale(0.7);
+ transform: scale(0.7);
opacity: 1;
}
30% {
- -webkit-transform: scale(0.7);
+ transform: scale(0.7);
opacity: 0;
}
100% {
- -webkit-transform: scale(0.7);
+ transform: scale(0.7);
opacity: 0;
}
}

Powered by Google App Engine
This is Rietveld 408576698