Css – Can fonts be imported from within the shadow DOM with a `<style>` tag?
Can a font be imported from within the shadow dom and have it apply to its children? When trying to do something like class MyCustomElement extends HTMLElement { constructor() { super(); const shadowRoot = this.attachShadow({mode: 'open'}); shadowRoot.innerHTML = ` <style>…