Index: ManualTests/animation/compositor-animation-direction.html |
diff --git a/ManualTests/animation/compositor-animation-direction.html b/ManualTests/animation/compositor-animation-direction.html |
index 096e9d8c0d54b6b5aad2302c1f29d23b04f51e82..2289c291b21d88de935ef73655a2ad418c5e0909 100644 |
--- a/ManualTests/animation/compositor-animation-direction.html |
+++ b/ManualTests/animation/compositor-animation-direction.html |
@@ -5,7 +5,7 @@ div { |
height: 100px; |
width: 100px; |
background: blue; |
- -webkit-transform: translateZ(0); |
+ transform: translateZ(0); |
-webkit-animation-duration: 2s; |
-webkit-animation-timing-function: linear; |
-webkit-animation-fill-mode: both; |
@@ -49,10 +49,10 @@ div { |
@-webkit-keyframes anim-transform { |
0% { |
- -webkit-transform: translateX(0px); |
+ transform: translateX(0px); |
} |
100% { |
- -webkit-transform: translateX(300px); |
+ transform: translateX(300px); |
} |
} |
</style> |