| Index: LayoutTests/fast/html/imports/resources/custom-element-style.html
|
| diff --git a/LayoutTests/fast/html/imports/resources/custom-element-style.html b/LayoutTests/fast/html/imports/resources/custom-element-style.html
|
| index c4a067f620e5a15113f2fb2789daca0263ce9efe..00c41457cddc63026443f52df0af255e82310e62 100644
|
| --- a/LayoutTests/fast/html/imports/resources/custom-element-style.html
|
| +++ b/LayoutTests/fast/html/imports/resources/custom-element-style.html
|
| @@ -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>
|
|
|