Index: LayoutTests/animations/timing-properties-do-not-trigger-animation.html |
diff --git a/LayoutTests/animations/timing-properties-do-not-trigger-animation.html b/LayoutTests/animations/timing-properties-do-not-trigger-animation.html |
index baa2c995a017a05a07244911804c010d0c86f4d2..2d5c68f7a190ac922d23ed21539fe09c4c66287c 100644 |
--- a/LayoutTests/animations/timing-properties-do-not-trigger-animation.html |
+++ b/LayoutTests/animations/timing-properties-do-not-trigger-animation.html |
@@ -31,12 +31,12 @@ |
animation-timing-function: linear; |
} |
@-webkit-keyframes test { |
- from { -webkit-transform: translateX(100px); } |
- to { -webkit-transform: translateX(300px); } |
+ from { transform: translateX(100px); } |
+ to { transform: translateX(300px); } |
} |
@keyframes test { |
- from { -webkit-transform: translateX(100px); } |
- to { -webkit-transform: translateX(300px); } |
+ from { transform: translateX(100px); } |
+ to { transform: translateX(300px); } |
} |
</style> |
<script type="text/javascript"> |