mirror of https://github.com/sveltejs/svelte
parent
a7631f21d8
commit
ad846db643
@ -0,0 +1,6 @@
|
|||||||
|
<main><div class="hello"></main>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
<div class="hello">
|
||||||
|
<p>hello</p>
|
||||||
|
</main>
|
@ -1,26 +1,26 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"code": "element_implicitly_closed",
|
"code": "element_implicitly_closed",
|
||||||
"message": "The tag `<p>` was implicitly closed by the parent or a next element. This may cause DOM structure being other than expected one.",
|
"message": "The tag `<div>` was implicitly closed by the parent or a next element. This may cause DOM structure being other than expected one.",
|
||||||
"start": {
|
"start": {
|
||||||
"line": 4,
|
"line": 1,
|
||||||
"column": 4
|
"column": 6
|
||||||
},
|
},
|
||||||
"end": {
|
"end": {
|
||||||
"line": 4,
|
"line": 1,
|
||||||
"column": 7
|
"column": 25
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"code": "element_implicitly_closed",
|
"code": "element_implicitly_closed",
|
||||||
"message": "The tag `<div>` was implicitly closed by the parent or a next element. This may cause DOM structure being other than expected one.",
|
"message": "The tag `<div>` was implicitly closed by the parent or a next element. This may cause DOM structure being other than expected one.",
|
||||||
"start": {
|
"start": {
|
||||||
"line": 3,
|
"line": 4,
|
||||||
"column": 4
|
"column": 1
|
||||||
},
|
},
|
||||||
"end": {
|
"end": {
|
||||||
"line": 3,
|
"line": 4,
|
||||||
"column": 9
|
"column": 20
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
@ -0,0 +1,9 @@
|
|||||||
|
<div>
|
||||||
|
<p class="hello">
|
||||||
|
<span></span>
|
||||||
|
<p></p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div>
|
||||||
|
<p class="hello"><p></p>
|
||||||
|
</div>
|
@ -0,0 +1,26 @@
|
|||||||
|
[
|
||||||
|
{
|
||||||
|
"code": "element_implicitly_closed",
|
||||||
|
"message": "The tag `<p>` was implicitly closed by the parent or a next element. This may cause DOM structure being other than expected one.",
|
||||||
|
"start": {
|
||||||
|
"line": 2,
|
||||||
|
"column": 1
|
||||||
|
},
|
||||||
|
"end": {
|
||||||
|
"line": 2,
|
||||||
|
"column": 18
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"code": "element_implicitly_closed",
|
||||||
|
"message": "The tag `<p>` was implicitly closed by the parent or a next element. This may cause DOM structure being other than expected one.",
|
||||||
|
"start": {
|
||||||
|
"line": 8,
|
||||||
|
"column": 1
|
||||||
|
},
|
||||||
|
"end": {
|
||||||
|
"line": 8,
|
||||||
|
"column": 18
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
@ -1,6 +0,0 @@
|
|||||||
<main>
|
|
||||||
<input>
|
|
||||||
<div>
|
|
||||||
<p>
|
|
||||||
<p></p>
|
|
||||||
</main>
|
|
Loading…
Reference in new issue