mirror of https://github.com/sveltejs/svelte
fix: disallow invalid attributes for `<svelte:window>` and `<svelte:document>` (#14228)
parent
312dd51acc
commit
7fd3774015
@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
'svelte': patch
|
||||||
|
---
|
||||||
|
|
||||||
|
fix: disallow invalid attributes for `<svelte:window>` and `<svelte:document>`
|
@ -0,0 +1,14 @@
|
|||||||
|
[
|
||||||
|
{
|
||||||
|
"code": "illegal_element_attribute",
|
||||||
|
"message": "`<svelte:document>` does not support non-event attributes or spread attributes",
|
||||||
|
"start": {
|
||||||
|
"line": 4,
|
||||||
|
"column": 17
|
||||||
|
},
|
||||||
|
"end": {
|
||||||
|
"line": 4,
|
||||||
|
"column": 23
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
@ -0,0 +1,4 @@
|
|||||||
|
<script>
|
||||||
|
let a = {};
|
||||||
|
</script>
|
||||||
|
<svelte:document {...a}></svelte:document>
|
@ -0,0 +1,14 @@
|
|||||||
|
[
|
||||||
|
{
|
||||||
|
"code": "illegal_element_attribute",
|
||||||
|
"message": "`<svelte:window>` does not support non-event attributes or spread attributes",
|
||||||
|
"start": {
|
||||||
|
"line": 4,
|
||||||
|
"column": 15
|
||||||
|
},
|
||||||
|
"end": {
|
||||||
|
"line": 4,
|
||||||
|
"column": 21
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
@ -0,0 +1,4 @@
|
|||||||
|
<script>
|
||||||
|
let a = {};
|
||||||
|
</script>
|
||||||
|
<svelte:window {...a}></svelte:window>
|
Loading…
Reference in new issue