Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / transitions / transition-end-event-transform.html
index c3803bc..abd4e76 100644 (file)
@@ -8,9 +8,9 @@
       width: 100px;
       margin: 10px;
       background-color: blue;
-      -webkit-transition-property: -webkit-transform;
+      -webkit-transition-property: transform;
       -webkit-transition-duration: 0.5s;
-      -webkit-transform: translate(100px);
+      transform: translate(100px);
     }
   </style>
   <script src="transition-end-event-helpers.js"></script>
@@ -18,7 +18,7 @@
     
     var expectedEndEvents = [
       // [property-name, element-id, elapsed-time, listen]
-      ["-webkit-transform", "box1", 0.5, true]
+      ["transform", "box1", 0.5, true]
     ];
     
     function setupTest()