@@ -89,7 +89,7 @@ export default Dummy$;
89
89
exports [` direct > Dummy.svelte?direct& svelte& type=style& sourcemap& lang.css 1` ] = `
90
90
"button.svelte-d8vj6a{ color :#000099 }
91
91
92
- /*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiRHVtbXkuc3ZlbHRlIiwibWFwcGluZ3MiOiJBQVdrQixNQUFBLGNBQUEsQ0FBQSxjQUtsQiIsIm5hbWVzIjpbXSwic291cmNlcyI6WyJEdW1teS5zdmVsdGUiXX0 = */
92
+ /*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiRHVtbXkuc3ZlbHRlIiwibWFwcGluZ3MiOiJBQVdrQixvQkFBQSIsIm5hbWVzIjpbXSwic291cmNlcyI6WyJEdW1teS5zdmVsdGUiXX0 = */
93
93
"
94
94
` ;
95
95
@@ -533,7 +533,7 @@ exports[`raw > Dummy.svelte?raw&svelte&type=all&sourcemap 1`] = `
533
533
\\" map\\ " : {
534
534
\\" version\\ " : 3 ,
535
535
\\" file\\ " : \\" Dummy.svelte\\ " ,
536
- \\" mappings\\ " : \\" AAWkB,MAAA,cAAA,CAAA,cAKlB \\ " ,
536
+ \\" mappings\\ " : \\" AAWkB,oBAAA \\ " ,
537
537
\\" names\\ " : [],
538
538
\\" sources\\ " : [
539
539
\\" Dummy.svelte\\ "
@@ -785,7 +785,9 @@ function instance$($$self, $$props, $$invalidate) {
785
785
class Dummy$ extends SvelteElement$ {
786
786
constructor (options ) {
787
787
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);
789
791
790
792
init$(
791
793
this,
@@ -1069,7 +1071,9 @@ function instance$($$self, $$props, $$invalidate) {
1069
1071
class Dummy$ extends SvelteElement$ {
1070
1072
constructor (options ) {
1071
1073
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);
1073
1077
1074
1078
init$(
1075
1079
this,
0 commit comments