Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / animations / matrix-anim.html
index ece50e2..8b3e0f2 100644 (file)
       background-color: blue;
       -webkit-animation-duration: 1s;
       -webkit-animation-timing-function: linear;
-      -webkit-animation-name: "anim";
+      -webkit-animation-name: anim;
     }
-    @-webkit-keyframes "anim" {
-        from { -webkit-transform: matrix(0.707, -0.707, 0.707, 0.707, 0, 0); }
-        to   { -webkit-transform: matrix(0.707, 0.707, -0.707, 0.707, 0, 0); }
+    @-webkit-keyframes anim {
+        from { transform: matrix(0.707, -0.707, 0.707, 0.707, 0, 0); }
+        to   { transform: matrix(0.707, 0.707, -0.707, 0.707, 0, 0); }
     }
   </style>
   <script src="resources/animation-test-helpers.js" type="text/javascript" charset="utf-8"></script>