Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / ManualTests / animation / compositor-animation-delay.html
index e502c26..089880a 100644 (file)
@@ -5,7 +5,7 @@ div {
     height: 100px;
     width: 100px;
     background: blue;
-    -webkit-transform: translateZ(0);
+    transform: translateZ(0);
     -webkit-animation-direction: alternate;
     -webkit-animation-duration: 2s;
     -webkit-animation-timing-function: linear;
@@ -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>