Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / fast / html / imports / resources / custom-element-style.html
index c4a067f..00c4145 100644 (file)
@@ -10,7 +10,7 @@ var t = document.currentScript.ownerDocument.querySelector('template');
 var proto = Object.create(HTMLElement.prototype);
 proto.createdCallback = function() {
   var root = this.createShadowRoot();
-  root.appendChild(document.importNode(t.content));
+  root.appendChild(document.importNode(t.content, true));
 };
 document.registerElement('x-test', {prototype: proto});
 </script>