@@ -89,7 +89,7 @@ export default Dummy$;
8989exports [` direct > Dummy.svelte?direct& svelte& type=style& sourcemap& lang.css 1` ] = `
9090"button.svelte-d8vj6a{ color :#000099 }
9191
92- /*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiRHVtbXkuc3ZlbHRlIiwibWFwcGluZ3MiOiJBQVdrQixNQUFBLGNBQUEsQ0FBQSxjQUtsQiIsIm5hbWVzIjpbXSwic291cmNlcyI6WyJEdW1teS5zdmVsdGUiXX0 = */
92+ /*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiRHVtbXkuc3ZlbHRlIiwibWFwcGluZ3MiOiJBQVdrQixvQkFBQSIsIm5hbWVzIjpbXSwic291cmNlcyI6WyJEdW1teS5zdmVsdGUiXX0 = */
9393"
9494` ;
9595
@@ -533,7 +533,7 @@ exports[`raw > Dummy.svelte?raw&svelte&type=all&sourcemap 1`] = `
533533 \\" map\\ " : {
534534 \\" version\\ " : 3 ,
535535 \\" file\\ " : \\" Dummy.svelte\\ " ,
536- \\" mappings\\ " : \\" AAWkB,MAAA,cAAA,CAAA,cAKlB \\ " ,
536+ \\" mappings\\ " : \\" AAWkB,oBAAA \\ " ,
537537 \\" names\\ " : [],
538538 \\" sources\\ " : [
539539 \\" Dummy.svelte\\ "
@@ -785,7 +785,9 @@ function instance$($$self, $$props, $$invalidate) {
785785class Dummy$ extends SvelteElement$ {
786786 constructor (options ) {
787787 super();
788- this.shadowRoot.innerHTML = \`<style >button{color :#000099 }</style>\`;
788+ const style = document.createElement('style ');
789+ style.textContent = \`button{color:#000099 }\` ;
790+ this.shadowRoot.appendChild(style);
789791
790792 init$(
791793 this,
@@ -1069,7 +1071,9 @@ function instance$($$self, $$props, $$invalidate) {
10691071class Dummy$ extends SvelteElement$ {
10701072 constructor (options ) {
10711073 super();
1072- this.shadowRoot.innerHTML = \`<style >button{color :#000099 }</style>\`;
1074+ const style = document.createElement('style ');
1075+ style.textContent = \`button{color:#000099 }\` ;
1076+ this.shadowRoot.appendChild(style);
10731077
10741078 init$(
10751079 this,
0 commit comments