2021-07-13 08:27:40 -04:00
|
|
|
async function polyfill() {
|
2021-12-22 16:11:05 -05:00
|
|
|
const { hydrateShadowRoots } = await import('@webcomponents/template-shadowroot/template-shadowroot.js');
|
|
|
|
hydrateShadowRoots(document.body);
|
2021-07-13 08:27:40 -04:00
|
|
|
}
|
|
|
|
|
2021-07-20 01:24:59 +00:00
|
|
|
const polyfillCheckEl = new DOMParser().parseFromString(`<p><template shadowroot="open"></template></p>`, 'text/html', { includeShadowRoots: true }).querySelector('p');
|
2021-07-19 18:23:39 -07:00
|
|
|
|
|
|
|
if (!polyfillCheckEl || !polyfillCheckEl.shadowRoot) {
|
2021-12-22 16:11:05 -05:00
|
|
|
polyfill();
|
2021-07-19 18:23:39 -07:00
|
|
|
}
|