blob: 03a3816d4319a298de6efaa06734d08432da3ae3 (
plain)
1
2
3
4
5
6
7
8
|
<!doctype html>
<div id="host" style="display: none"></div>
<script>
let shadowRoot = host.attachShadow({ mode: "open" });
shadowRoot.appendChild(document.createTextNode('foo'));
document.body.offsetTop;
shadowRoot.insertBefore(document.createElement('bar'), shadowRoot.firstChild);
</script>
|