summaryrefslogtreecommitdiffstats
path: root/layout/reftests/webcomponents/reframe-shadow-child-2.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/webcomponents/reframe-shadow-child-2.html')
-rw-r--r--layout/reftests/webcomponents/reframe-shadow-child-2.html15
1 files changed, 15 insertions, 0 deletions
diff --git a/layout/reftests/webcomponents/reframe-shadow-child-2.html b/layout/reftests/webcomponents/reframe-shadow-child-2.html
new file mode 100644
index 0000000000..0ebbe7433d
--- /dev/null
+++ b/layout/reftests/webcomponents/reframe-shadow-child-2.html
@@ -0,0 +1,15 @@
+<!doctype html>
+<template id="tmpl">
+ <div style="display: block">
+ Some text
+ More text
+ </div>
+</template>
+<div id="host"></div>
+<script>
+ let shadowRoot = document.getElementById("host").attachShadow({mode: 'open'});
+ let tmpl = document.getElementById("tmpl");
+ shadowRoot.appendChild(document.importNode(tmpl.content, true));
+ document.body.offsetTop;
+ shadowRoot.firstElementChild.style.display = "table";
+</script>