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; |
} |
} |