Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / fast / css / transform-default-parameter.html
index eab6b0b..6c4b2b0 100644 (file)
         top: 100px;
         left: 100px;
         background-color: blue;
-        -webkit-transform: translate(400px); // this should evaluate as 400px, 0px
+        transform: translate(400px); // this should evaluate as 400px, 0px
       }
 
       #box2 {
         top: 500px;
         left: 500px;
         background-color: green;
-        -webkit-transform: translate3d(0px, 0px, -1px);
+        transform: translate3d(0px, 0px, -1px);
       }
 
       #box3 {
         top: 100px;
         left: 500px;
         background-color: red;
-        -webkit-transform: translate3d(0px, 0px, -1px);
+        transform: translate3d(0px, 0px, -1px);
       }
       
     </style>