Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / fast / dom / shadow / shadowroot-keyframes.html
index a478a5f..5cc6206 100644 (file)
@@ -26,16 +26,16 @@ function getBackgroundColor(element) {
 }
 
 var shadowRootWithKeyframe = document.getElementById("d1").createShadowRoot();
-shadowRootWithKeyframe.innerHTML = '<style>@-webkit-keyframes "anim" {' +
+shadowRootWithKeyframe.innerHTML = '<style>@-webkit-keyframes anim {' +
     'from { background-color:red; } to { background-color: blue; } }' +
     '#box { height: 100px; width: 100px; background: red; ' +
-    '-webkit-animation: "anim" 0.5s both; }</style>' +
+    '-webkit-animation: anim 0.5s both; }</style>' +
     '<div id="box"></div>';
 
 var shadowRootWithoutKeyframe = document.getElementById("d2").createShadowRoot();
 shadowRootWithoutKeyframe.innerHTML = '<style>' +
     '#box { height: 100px; width: 100px; background: red; ' +
-    '-webkit-animation: "anim" 0.5s both; }</style>' +
+    '-webkit-animation: anim 0.5s both; }</style>' +
     '<div id="box"></div>';
 
 window.setTimeout(function() {