mirror of https://github.com/sveltejs/svelte
add missing end AST property to non-top-level <style> tags (#5487)
parent
e508fb7b8b
commit
aa759f44fc
@ -0,0 +1 @@
|
||||
<svelte:head><style></style></svelte:head>
|
@ -0,0 +1,33 @@
|
||||
{
|
||||
"html": {
|
||||
"start": 0,
|
||||
"end": 42,
|
||||
"type": "Fragment",
|
||||
"children": [
|
||||
{
|
||||
"start": 0,
|
||||
"end": 42,
|
||||
"type": "Head",
|
||||
"name": "svelte:head",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"start": 13,
|
||||
"end": 28,
|
||||
"type": "Element",
|
||||
"name": "style",
|
||||
"attributes": [],
|
||||
"children": [
|
||||
{
|
||||
"start": 20,
|
||||
"end": 20,
|
||||
"type": "Text",
|
||||
"data": ""
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
Loading…
Reference in new issue