File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
packages/svelte/test/runtime/samples/attribute-custom-element-inheritance Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,6 @@ export default {
2
2
skip_if_ssr : true ,
3
3
skip_if_hydrate : true ,
4
4
html : `
5
- <my-custom-element>Hello World!</my-custom-element>
5
+ <my-custom-inheritance- element>Hello World!</my-custom-inheritance -element>
6
6
`
7
7
} ;
Original file line number Diff line number Diff line change 27
27
28
28
class Extended extends MyCustomElement {}
29
29
30
- window .customElements .define (' my-custom-element' , Extended);
30
+ window .customElements .define (' my-custom-inheritance- element' , Extended);
31
31
</script >
32
32
33
- <my-custom-element camelCase ={{ text : ' World' }} text =" !" />
33
+ <my-custom-inheritance- element camelCase ={{ text : ' World' }} text =" !" />
You can’t perform that action at this time.
0 commit comments