summaryrefslogtreecommitdiffstats
path: root/layout/reftests/webcomponents/update-dist-node-descendants-1.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/webcomponents/update-dist-node-descendants-1.html')
-rw-r--r--layout/reftests/webcomponents/update-dist-node-descendants-1.html17
1 files changed, 9 insertions, 8 deletions
diff --git a/layout/reftests/webcomponents/update-dist-node-descendants-1.html b/layout/reftests/webcomponents/update-dist-node-descendants-1.html
index e2dd4ebb7..003c23394 100644
--- a/layout/reftests/webcomponents/update-dist-node-descendants-1.html
+++ b/layout/reftests/webcomponents/update-dist-node-descendants-1.html
@@ -5,17 +5,18 @@
<body>
<div id="outer"><span id="distnode">text</span></div>
<script>
-var shadowRoot = document.getElementById('outer').createShadowRoot();
-shadowRoot.innerHTML = '<div><content></content></div>';
-function tweak() {
- var distNode = document.getElementById("distnode");
- distNode.textContent = "Hello World";
+ var shadowRoot = document.getElementById('outer').attachShadow({mode: 'open'});
+ shadowRoot.innerHTML = '<div><slot></slot></div>';
- document.documentElement.removeAttribute("class");
-}
+ function tweak() {
+ var distNode = document.getElementById("distnode");
+ distNode.textContent = "Hello World";
-window.addEventListener("MozReftestInvalidate", tweak);
+ document.documentElement.removeAttribute("class");
+ }
+
+ window.addEventListener("MozReftestInvalidate", tweak);
</script>
</body>
</html>