astro/packages/renderers/renderer-lit/client-shim.js

14 lines
377 B
JavaScript
Raw Normal View History

async function polyfill() {
const { hydrateShadowRoots } = await import('@webcomponents/template-shadowroot/template-shadowroot.js');
hydrateShadowRoots(document.body);
}
2021-07-13 12:28:50 +00:00
if (
!new DOMParser()
.parseFromString(`<p><template shadowroot="open"></template></p>`, 'text/html', {
includeShadowRoots: true,
})
.querySelector('p')?.shadowRoot
)
polyfill();