Dactyloidae/layout/reftests/webcomponents/reframe-shadow-child-1.html
Matt A. Tobin cab78760e5 Bug 1409975 - Implement node distribution for shadow tree slots
* Implementation for assignedNodes
* Include slots in the flat tree
* Fix event get-the-parent algorithm for a node
* Update and add reftests for Shadow DOM v1
* Update web platform tests expectations

Tag #1375
2020-04-18 07:05:39 +08:00

16 lines
497 B
HTML

<!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>