summaryrefslogtreecommitdiffstats
path: root/layout/reftests/webcomponents/reframe-shadow-child-1.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/webcomponents/reframe-shadow-child-1.html')
-rw-r--r--layout/reftests/webcomponents/reframe-shadow-child-1.html16
1 files changed, 16 insertions, 0 deletions
diff --git a/layout/reftests/webcomponents/reframe-shadow-child-1.html b/layout/reftests/webcomponents/reframe-shadow-child-1.html
new file mode 100644
index 0000000000..d953beb6d7
--- /dev/null
+++ b/layout/reftests/webcomponents/reframe-shadow-child-1.html
@@ -0,0 +1,16 @@
+<!doctype html>
+<template id="tmpl">
+ <div style="display: table">
+ Some text
+ <span style="display: table-cell">something</span>
+ 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.querySelector("span").remove();
+</script>