mirror of
https://github.com/swc-project/swc.git
synced 2024-12-29 16:42:28 +03:00
1275 lines
43 KiB
Plaintext
1275 lines
43 KiB
Plaintext
|
|
x Document
|
|
,-[$DIR/tests/fixture/element/template/input.html:1:1]
|
|
1 | ,-> <!doctype html>
|
|
2 | | <html lang="en">
|
|
3 | | <head>
|
|
4 | | <title>Document</title>
|
|
5 | | </head>
|
|
6 | | <body>
|
|
7 | | <template id="element-details-template">
|
|
8 | | <style>
|
|
9 | | details {font-family: "Open Sans Light", Helvetica, Arial, sans-serif }
|
|
10 | | .name {font-weight: bold; color: #217ac0; font-size: 120% }
|
|
11 | | h4 {
|
|
12 | | margin: 10px 0 -8px 0;
|
|
13 | | background: #217ac0;
|
|
14 | | color: white;
|
|
15 | | padding: 2px 6px;
|
|
16 | | border: 1px solid #cee9f9;
|
|
17 | | border-radius: 4px;
|
|
18 | | }
|
|
19 | | .attributes { margin-left: 22px; font-size: 90% }
|
|
20 | | .attributes p { margin-left: 16px; font-style: italic }
|
|
21 | | </style>
|
|
22 | | <details>
|
|
23 | | <summary>
|
|
24 | | <code class="name"><<slot name="element-name">NEED NAME</slot>></code>
|
|
25 | | <i class="desc"><slot name="description">NEED DESCRIPTION</slot></i>
|
|
26 | | </summary>
|
|
27 | | <div class="attributes">
|
|
28 | | <h4>Attributes</h4>
|
|
29 | | <slot name="attributes"><p>None</p></slot>
|
|
30 | | </div>
|
|
31 | | </details>
|
|
32 | | <hr>
|
|
33 | | </template>
|
|
34 | |
|
|
35 | | <template id="tmpl1">
|
|
36 | | <div id="div1">This is div inside template</div>
|
|
37 | | <div id="div2">This is another div inside template</div>
|
|
38 | | <template id="tmpl2"><div id="div3">This is div inside nested template</div>
|
|
39 | | <div id="div4">This is another div inside nested template</div>
|
|
40 | | </template>
|
|
41 | | </template>
|
|
42 | |
|
|
43 | | <template><div>test</div></template>
|
|
44 | | </body>
|
|
45 | `-> </html>
|
|
`----
|
|
|
|
x Child
|
|
,-[$DIR/tests/fixture/element/template/input.html:1:1]
|
|
1 | <!doctype html>
|
|
: ^^^^^^^^^^^^^^^
|
|
`----
|
|
|
|
x DocumentType
|
|
,-[$DIR/tests/fixture/element/template/input.html:1:1]
|
|
1 | <!doctype html>
|
|
: ^^^^^^^^^^^^^^^
|
|
`----
|
|
|
|
x Child
|
|
,-[$DIR/tests/fixture/element/template/input.html:2:1]
|
|
2 | ,-> <html lang="en">
|
|
3 | | <head>
|
|
4 | | <title>Document</title>
|
|
5 | | </head>
|
|
6 | | <body>
|
|
7 | | <template id="element-details-template">
|
|
8 | | <style>
|
|
9 | | details {font-family: "Open Sans Light", Helvetica, Arial, sans-serif }
|
|
10 | | .name {font-weight: bold; color: #217ac0; font-size: 120% }
|
|
11 | | h4 {
|
|
12 | | margin: 10px 0 -8px 0;
|
|
13 | | background: #217ac0;
|
|
14 | | color: white;
|
|
15 | | padding: 2px 6px;
|
|
16 | | border: 1px solid #cee9f9;
|
|
17 | | border-radius: 4px;
|
|
18 | | }
|
|
19 | | .attributes { margin-left: 22px; font-size: 90% }
|
|
20 | | .attributes p { margin-left: 16px; font-style: italic }
|
|
21 | | </style>
|
|
22 | | <details>
|
|
23 | | <summary>
|
|
24 | | <code class="name"><<slot name="element-name">NEED NAME</slot>></code>
|
|
25 | | <i class="desc"><slot name="description">NEED DESCRIPTION</slot></i>
|
|
26 | | </summary>
|
|
27 | | <div class="attributes">
|
|
28 | | <h4>Attributes</h4>
|
|
29 | | <slot name="attributes"><p>None</p></slot>
|
|
30 | | </div>
|
|
31 | | </details>
|
|
32 | | <hr>
|
|
33 | | </template>
|
|
34 | |
|
|
35 | | <template id="tmpl1">
|
|
36 | | <div id="div1">This is div inside template</div>
|
|
37 | | <div id="div2">This is another div inside template</div>
|
|
38 | | <template id="tmpl2"><div id="div3">This is div inside nested template</div>
|
|
39 | | <div id="div4">This is another div inside nested template</div>
|
|
40 | | </template>
|
|
41 | | </template>
|
|
42 | |
|
|
43 | | <template><div>test</div></template>
|
|
44 | | </body>
|
|
45 | `-> </html>
|
|
`----
|
|
|
|
x Element
|
|
,-[$DIR/tests/fixture/element/template/input.html:2:1]
|
|
2 | ,-> <html lang="en">
|
|
3 | | <head>
|
|
4 | | <title>Document</title>
|
|
5 | | </head>
|
|
6 | | <body>
|
|
7 | | <template id="element-details-template">
|
|
8 | | <style>
|
|
9 | | details {font-family: "Open Sans Light", Helvetica, Arial, sans-serif }
|
|
10 | | .name {font-weight: bold; color: #217ac0; font-size: 120% }
|
|
11 | | h4 {
|
|
12 | | margin: 10px 0 -8px 0;
|
|
13 | | background: #217ac0;
|
|
14 | | color: white;
|
|
15 | | padding: 2px 6px;
|
|
16 | | border: 1px solid #cee9f9;
|
|
17 | | border-radius: 4px;
|
|
18 | | }
|
|
19 | | .attributes { margin-left: 22px; font-size: 90% }
|
|
20 | | .attributes p { margin-left: 16px; font-style: italic }
|
|
21 | | </style>
|
|
22 | | <details>
|
|
23 | | <summary>
|
|
24 | | <code class="name"><<slot name="element-name">NEED NAME</slot>></code>
|
|
25 | | <i class="desc"><slot name="description">NEED DESCRIPTION</slot></i>
|
|
26 | | </summary>
|
|
27 | | <div class="attributes">
|
|
28 | | <h4>Attributes</h4>
|
|
29 | | <slot name="attributes"><p>None</p></slot>
|
|
30 | | </div>
|
|
31 | | </details>
|
|
32 | | <hr>
|
|
33 | | </template>
|
|
34 | |
|
|
35 | | <template id="tmpl1">
|
|
36 | | <div id="div1">This is div inside template</div>
|
|
37 | | <div id="div2">This is another div inside template</div>
|
|
38 | | <template id="tmpl2"><div id="div3">This is div inside nested template</div>
|
|
39 | | <div id="div4">This is another div inside nested template</div>
|
|
40 | | </template>
|
|
41 | | </template>
|
|
42 | |
|
|
43 | | <template><div>test</div></template>
|
|
44 | | </body>
|
|
45 | `-> </html>
|
|
`----
|
|
|
|
x Attribute
|
|
,-[$DIR/tests/fixture/element/template/input.html:2:1]
|
|
2 | <html lang="en">
|
|
: ^^^^^^^^^
|
|
`----
|
|
|
|
x Child
|
|
,-[$DIR/tests/fixture/element/template/input.html:3:1]
|
|
3 | ,-> <head>
|
|
4 | | <title>Document</title>
|
|
5 | `-> </head>
|
|
`----
|
|
|
|
x Element
|
|
,-[$DIR/tests/fixture/element/template/input.html:3:1]
|
|
3 | ,-> <head>
|
|
4 | | <title>Document</title>
|
|
5 | `-> </head>
|
|
`----
|
|
|
|
x Child
|
|
,-[$DIR/tests/fixture/element/template/input.html:3:1]
|
|
3 | ,-> <head>
|
|
4 | `-> <title>Document</title>
|
|
`----
|
|
|
|
x Text
|
|
,-[$DIR/tests/fixture/element/template/input.html:3:1]
|
|
3 | ,-> <head>
|
|
4 | `-> <title>Document</title>
|
|
`----
|
|
|
|
x Child
|
|
,-[$DIR/tests/fixture/element/template/input.html:4:5]
|
|
4 | <title>Document</title>
|
|
: ^^^^^^^^^^^^^^^^^^^^^^^
|
|
`----
|
|
|
|
x Element
|
|
,-[$DIR/tests/fixture/element/template/input.html:4:5]
|
|
4 | <title>Document</title>
|
|
: ^^^^^^^^^^^^^^^^^^^^^^^
|
|
`----
|
|
|
|
x Child
|
|
,-[$DIR/tests/fixture/element/template/input.html:4:5]
|
|
4 | <title>Document</title>
|
|
: ^^^^^^^^
|
|
`----
|
|
|
|
x Text
|
|
,-[$DIR/tests/fixture/element/template/input.html:4:5]
|
|
4 | <title>Document</title>
|
|
: ^^^^^^^^
|
|
`----
|
|
|
|
x Child
|
|
,-[$DIR/tests/fixture/element/template/input.html:4:5]
|
|
4 | <title>Document</title>
|
|
: ^
|
|
5 | </head>
|
|
`----
|
|
|
|
x Text
|
|
,-[$DIR/tests/fixture/element/template/input.html:4:5]
|
|
4 | <title>Document</title>
|
|
: ^
|
|
5 | </head>
|
|
`----
|
|
|
|
x Child
|
|
,-[$DIR/tests/fixture/element/template/input.html:5:1]
|
|
5 | </head>
|
|
: ^
|
|
6 | <body>
|
|
`----
|
|
|
|
x Text
|
|
,-[$DIR/tests/fixture/element/template/input.html:5:1]
|
|
5 | </head>
|
|
: ^
|
|
6 | <body>
|
|
`----
|
|
|
|
x Child
|
|
,-[$DIR/tests/fixture/element/template/input.html:6:1]
|
|
6 | ,-> <body>
|
|
7 | | <template id="element-details-template">
|
|
8 | | <style>
|
|
9 | | details {font-family: "Open Sans Light", Helvetica, Arial, sans-serif }
|
|
10 | | .name {font-weight: bold; color: #217ac0; font-size: 120% }
|
|
11 | | h4 {
|
|
12 | | margin: 10px 0 -8px 0;
|
|
13 | | background: #217ac0;
|
|
14 | | color: white;
|
|
15 | | padding: 2px 6px;
|
|
16 | | border: 1px solid #cee9f9;
|
|
17 | | border-radius: 4px;
|
|
18 | | }
|
|
19 | | .attributes { margin-left: 22px; font-size: 90% }
|
|
20 | | .attributes p { margin-left: 16px; font-style: italic }
|
|
21 | | </style>
|
|
22 | | <details>
|
|
23 | | <summary>
|
|
24 | | <code class="name"><<slot name="element-name">NEED NAME</slot>></code>
|
|
25 | | <i class="desc"><slot name="description">NEED DESCRIPTION</slot></i>
|
|
26 | | </summary>
|
|
27 | | <div class="attributes">
|
|
28 | | <h4>Attributes</h4>
|
|
29 | | <slot name="attributes"><p>None</p></slot>
|
|
30 | | </div>
|
|
31 | | </details>
|
|
32 | | <hr>
|
|
33 | | </template>
|
|
34 | |
|
|
35 | | <template id="tmpl1">
|
|
36 | | <div id="div1">This is div inside template</div>
|
|
37 | | <div id="div2">This is another div inside template</div>
|
|
38 | | <template id="tmpl2"><div id="div3">This is div inside nested template</div>
|
|
39 | | <div id="div4">This is another div inside nested template</div>
|
|
40 | | </template>
|
|
41 | | </template>
|
|
42 | |
|
|
43 | | <template><div>test</div></template>
|
|
44 | | </body>
|
|
45 | `-> </html>
|
|
`----
|
|
|
|
x Element
|
|
,-[$DIR/tests/fixture/element/template/input.html:6:1]
|
|
6 | ,-> <body>
|
|
7 | | <template id="element-details-template">
|
|
8 | | <style>
|
|
9 | | details {font-family: "Open Sans Light", Helvetica, Arial, sans-serif }
|
|
10 | | .name {font-weight: bold; color: #217ac0; font-size: 120% }
|
|
11 | | h4 {
|
|
12 | | margin: 10px 0 -8px 0;
|
|
13 | | background: #217ac0;
|
|
14 | | color: white;
|
|
15 | | padding: 2px 6px;
|
|
16 | | border: 1px solid #cee9f9;
|
|
17 | | border-radius: 4px;
|
|
18 | | }
|
|
19 | | .attributes { margin-left: 22px; font-size: 90% }
|
|
20 | | .attributes p { margin-left: 16px; font-style: italic }
|
|
21 | | </style>
|
|
22 | | <details>
|
|
23 | | <summary>
|
|
24 | | <code class="name"><<slot name="element-name">NEED NAME</slot>></code>
|
|
25 | | <i class="desc"><slot name="description">NEED DESCRIPTION</slot></i>
|
|
26 | | </summary>
|
|
27 | | <div class="attributes">
|
|
28 | | <h4>Attributes</h4>
|
|
29 | | <slot name="attributes"><p>None</p></slot>
|
|
30 | | </div>
|
|
31 | | </details>
|
|
32 | | <hr>
|
|
33 | | </template>
|
|
34 | |
|
|
35 | | <template id="tmpl1">
|
|
36 | | <div id="div1">This is div inside template</div>
|
|
37 | | <div id="div2">This is another div inside template</div>
|
|
38 | | <template id="tmpl2"><div id="div3">This is div inside nested template</div>
|
|
39 | | <div id="div4">This is another div inside nested template</div>
|
|
40 | | </template>
|
|
41 | | </template>
|
|
42 | |
|
|
43 | | <template><div>test</div></template>
|
|
44 | | </body>
|
|
45 | `-> </html>
|
|
`----
|
|
|
|
x Child
|
|
,-[$DIR/tests/fixture/element/template/input.html:6:1]
|
|
6 | ,-> <body>
|
|
7 | `-> <template id="element-details-template">
|
|
`----
|
|
|
|
x Text
|
|
,-[$DIR/tests/fixture/element/template/input.html:6:1]
|
|
6 | ,-> <body>
|
|
7 | `-> <template id="element-details-template">
|
|
`----
|
|
|
|
x Child
|
|
,-[$DIR/tests/fixture/element/template/input.html:7:5]
|
|
7 | ,-> <template id="element-details-template">
|
|
8 | | <style>
|
|
9 | | details {font-family: "Open Sans Light", Helvetica, Arial, sans-serif }
|
|
10 | | .name {font-weight: bold; color: #217ac0; font-size: 120% }
|
|
11 | | h4 {
|
|
12 | | margin: 10px 0 -8px 0;
|
|
13 | | background: #217ac0;
|
|
14 | | color: white;
|
|
15 | | padding: 2px 6px;
|
|
16 | | border: 1px solid #cee9f9;
|
|
17 | | border-radius: 4px;
|
|
18 | | }
|
|
19 | | .attributes { margin-left: 22px; font-size: 90% }
|
|
20 | | .attributes p { margin-left: 16px; font-style: italic }
|
|
21 | | </style>
|
|
22 | | <details>
|
|
23 | | <summary>
|
|
24 | | <code class="name"><<slot name="element-name">NEED NAME</slot>></code>
|
|
25 | | <i class="desc"><slot name="description">NEED DESCRIPTION</slot></i>
|
|
26 | | </summary>
|
|
27 | | <div class="attributes">
|
|
28 | | <h4>Attributes</h4>
|
|
29 | | <slot name="attributes"><p>None</p></slot>
|
|
30 | | </div>
|
|
31 | | </details>
|
|
32 | | <hr>
|
|
33 | `-> </template>
|
|
`----
|
|
|
|
x Element
|
|
,-[$DIR/tests/fixture/element/template/input.html:7:5]
|
|
7 | ,-> <template id="element-details-template">
|
|
8 | | <style>
|
|
9 | | details {font-family: "Open Sans Light", Helvetica, Arial, sans-serif }
|
|
10 | | .name {font-weight: bold; color: #217ac0; font-size: 120% }
|
|
11 | | h4 {
|
|
12 | | margin: 10px 0 -8px 0;
|
|
13 | | background: #217ac0;
|
|
14 | | color: white;
|
|
15 | | padding: 2px 6px;
|
|
16 | | border: 1px solid #cee9f9;
|
|
17 | | border-radius: 4px;
|
|
18 | | }
|
|
19 | | .attributes { margin-left: 22px; font-size: 90% }
|
|
20 | | .attributes p { margin-left: 16px; font-style: italic }
|
|
21 | | </style>
|
|
22 | | <details>
|
|
23 | | <summary>
|
|
24 | | <code class="name"><<slot name="element-name">NEED NAME</slot>></code>
|
|
25 | | <i class="desc"><slot name="description">NEED DESCRIPTION</slot></i>
|
|
26 | | </summary>
|
|
27 | | <div class="attributes">
|
|
28 | | <h4>Attributes</h4>
|
|
29 | | <slot name="attributes"><p>None</p></slot>
|
|
30 | | </div>
|
|
31 | | </details>
|
|
32 | | <hr>
|
|
33 | `-> </template>
|
|
`----
|
|
|
|
x Attribute
|
|
,-[$DIR/tests/fixture/element/template/input.html:7:5]
|
|
7 | <template id="element-details-template">
|
|
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
`----
|
|
|
|
x DocumentFragment
|
|
,-[$DIR/tests/fixture/element/template/input.html:7:5]
|
|
7 | ,-> <template id="element-details-template">
|
|
8 | | <style>
|
|
9 | | details {font-family: "Open Sans Light", Helvetica, Arial, sans-serif }
|
|
10 | | .name {font-weight: bold; color: #217ac0; font-size: 120% }
|
|
11 | | h4 {
|
|
12 | | margin: 10px 0 -8px 0;
|
|
13 | | background: #217ac0;
|
|
14 | | color: white;
|
|
15 | | padding: 2px 6px;
|
|
16 | | border: 1px solid #cee9f9;
|
|
17 | | border-radius: 4px;
|
|
18 | | }
|
|
19 | | .attributes { margin-left: 22px; font-size: 90% }
|
|
20 | | .attributes p { margin-left: 16px; font-style: italic }
|
|
21 | | </style>
|
|
22 | | <details>
|
|
23 | | <summary>
|
|
24 | | <code class="name"><<slot name="element-name">NEED NAME</slot>></code>
|
|
25 | | <i class="desc"><slot name="description">NEED DESCRIPTION</slot></i>
|
|
26 | | </summary>
|
|
27 | | <div class="attributes">
|
|
28 | | <h4>Attributes</h4>
|
|
29 | | <slot name="attributes"><p>None</p></slot>
|
|
30 | | </div>
|
|
31 | | </details>
|
|
32 | | <hr>
|
|
33 | `-> </template>
|
|
`----
|
|
|
|
x Child
|
|
,-[$DIR/tests/fixture/element/template/input.html:7:5]
|
|
7 | ,-> <template id="element-details-template">
|
|
8 | `-> <style>
|
|
`----
|
|
|
|
x Text
|
|
,-[$DIR/tests/fixture/element/template/input.html:7:5]
|
|
7 | ,-> <template id="element-details-template">
|
|
8 | `-> <style>
|
|
`----
|
|
|
|
x Child
|
|
,-[$DIR/tests/fixture/element/template/input.html:8:9]
|
|
8 | ,-> <style>
|
|
9 | | details {font-family: "Open Sans Light", Helvetica, Arial, sans-serif }
|
|
10 | | .name {font-weight: bold; color: #217ac0; font-size: 120% }
|
|
11 | | h4 {
|
|
12 | | margin: 10px 0 -8px 0;
|
|
13 | | background: #217ac0;
|
|
14 | | color: white;
|
|
15 | | padding: 2px 6px;
|
|
16 | | border: 1px solid #cee9f9;
|
|
17 | | border-radius: 4px;
|
|
18 | | }
|
|
19 | | .attributes { margin-left: 22px; font-size: 90% }
|
|
20 | | .attributes p { margin-left: 16px; font-style: italic }
|
|
21 | `-> </style>
|
|
`----
|
|
|
|
x Element
|
|
,-[$DIR/tests/fixture/element/template/input.html:8:9]
|
|
8 | ,-> <style>
|
|
9 | | details {font-family: "Open Sans Light", Helvetica, Arial, sans-serif }
|
|
10 | | .name {font-weight: bold; color: #217ac0; font-size: 120% }
|
|
11 | | h4 {
|
|
12 | | margin: 10px 0 -8px 0;
|
|
13 | | background: #217ac0;
|
|
14 | | color: white;
|
|
15 | | padding: 2px 6px;
|
|
16 | | border: 1px solid #cee9f9;
|
|
17 | | border-radius: 4px;
|
|
18 | | }
|
|
19 | | .attributes { margin-left: 22px; font-size: 90% }
|
|
20 | | .attributes p { margin-left: 16px; font-style: italic }
|
|
21 | `-> </style>
|
|
`----
|
|
|
|
x Child
|
|
,-[$DIR/tests/fixture/element/template/input.html:8:9]
|
|
8 | ,-> <style>
|
|
9 | | details {font-family: "Open Sans Light", Helvetica, Arial, sans-serif }
|
|
10 | | .name {font-weight: bold; color: #217ac0; font-size: 120% }
|
|
11 | | h4 {
|
|
12 | | margin: 10px 0 -8px 0;
|
|
13 | | background: #217ac0;
|
|
14 | | color: white;
|
|
15 | | padding: 2px 6px;
|
|
16 | | border: 1px solid #cee9f9;
|
|
17 | | border-radius: 4px;
|
|
18 | | }
|
|
19 | | .attributes { margin-left: 22px; font-size: 90% }
|
|
20 | | .attributes p { margin-left: 16px; font-style: italic }
|
|
21 | `-> </style>
|
|
`----
|
|
|
|
x Text
|
|
,-[$DIR/tests/fixture/element/template/input.html:8:9]
|
|
8 | ,-> <style>
|
|
9 | | details {font-family: "Open Sans Light", Helvetica, Arial, sans-serif }
|
|
10 | | .name {font-weight: bold; color: #217ac0; font-size: 120% }
|
|
11 | | h4 {
|
|
12 | | margin: 10px 0 -8px 0;
|
|
13 | | background: #217ac0;
|
|
14 | | color: white;
|
|
15 | | padding: 2px 6px;
|
|
16 | | border: 1px solid #cee9f9;
|
|
17 | | border-radius: 4px;
|
|
18 | | }
|
|
19 | | .attributes { margin-left: 22px; font-size: 90% }
|
|
20 | | .attributes p { margin-left: 16px; font-style: italic }
|
|
21 | `-> </style>
|
|
`----
|
|
|
|
x Child
|
|
,-[$DIR/tests/fixture/element/template/input.html:21:9]
|
|
21 | ,-> </style>
|
|
22 | `-> <details>
|
|
`----
|
|
|
|
x Text
|
|
,-[$DIR/tests/fixture/element/template/input.html:21:9]
|
|
21 | ,-> </style>
|
|
22 | `-> <details>
|
|
`----
|
|
|
|
x Child
|
|
,-[$DIR/tests/fixture/element/template/input.html:22:9]
|
|
22 | ,-> <details>
|
|
23 | | <summary>
|
|
24 | | <code class="name"><<slot name="element-name">NEED NAME</slot>></code>
|
|
25 | | <i class="desc"><slot name="description">NEED DESCRIPTION</slot></i>
|
|
26 | | </summary>
|
|
27 | | <div class="attributes">
|
|
28 | | <h4>Attributes</h4>
|
|
29 | | <slot name="attributes"><p>None</p></slot>
|
|
30 | | </div>
|
|
31 | `-> </details>
|
|
`----
|
|
|
|
x Element
|
|
,-[$DIR/tests/fixture/element/template/input.html:22:9]
|
|
22 | ,-> <details>
|
|
23 | | <summary>
|
|
24 | | <code class="name"><<slot name="element-name">NEED NAME</slot>></code>
|
|
25 | | <i class="desc"><slot name="description">NEED DESCRIPTION</slot></i>
|
|
26 | | </summary>
|
|
27 | | <div class="attributes">
|
|
28 | | <h4>Attributes</h4>
|
|
29 | | <slot name="attributes"><p>None</p></slot>
|
|
30 | | </div>
|
|
31 | `-> </details>
|
|
`----
|
|
|
|
x Child
|
|
,-[$DIR/tests/fixture/element/template/input.html:22:9]
|
|
22 | ,-> <details>
|
|
23 | `-> <summary>
|
|
`----
|
|
|
|
x Text
|
|
,-[$DIR/tests/fixture/element/template/input.html:22:9]
|
|
22 | ,-> <details>
|
|
23 | `-> <summary>
|
|
`----
|
|
|
|
x Child
|
|
,-[$DIR/tests/fixture/element/template/input.html:23:13]
|
|
23 | ,-> <summary>
|
|
24 | | <code class="name"><<slot name="element-name">NEED NAME</slot>></code>
|
|
25 | | <i class="desc"><slot name="description">NEED DESCRIPTION</slot></i>
|
|
26 | `-> </summary>
|
|
`----
|
|
|
|
x Element
|
|
,-[$DIR/tests/fixture/element/template/input.html:23:13]
|
|
23 | ,-> <summary>
|
|
24 | | <code class="name"><<slot name="element-name">NEED NAME</slot>></code>
|
|
25 | | <i class="desc"><slot name="description">NEED DESCRIPTION</slot></i>
|
|
26 | `-> </summary>
|
|
`----
|
|
|
|
x Child
|
|
,-[$DIR/tests/fixture/element/template/input.html:23:13]
|
|
23 | ,-> <summary>
|
|
24 | `-> <code class="name"><<slot name="element-name">NEED NAME</slot>></code>
|
|
`----
|
|
|
|
x Text
|
|
,-[$DIR/tests/fixture/element/template/input.html:23:13]
|
|
23 | ,-> <summary>
|
|
24 | `-> <code class="name"><<slot name="element-name">NEED NAME</slot>></code>
|
|
`----
|
|
|
|
x Child
|
|
,-[$DIR/tests/fixture/element/template/input.html:24:17]
|
|
24 | <code class="name"><<slot name="element-name">NEED NAME</slot>></code>
|
|
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
`----
|
|
|
|
x Element
|
|
,-[$DIR/tests/fixture/element/template/input.html:24:17]
|
|
24 | <code class="name"><<slot name="element-name">NEED NAME</slot>></code>
|
|
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
`----
|
|
|
|
x Attribute
|
|
,-[$DIR/tests/fixture/element/template/input.html:24:17]
|
|
24 | <code class="name"><<slot name="element-name">NEED NAME</slot>></code>
|
|
: ^^^^^^^^^^^^
|
|
`----
|
|
|
|
x Child
|
|
,-[$DIR/tests/fixture/element/template/input.html:24:17]
|
|
24 | <code class="name"><<slot name="element-name">NEED NAME</slot>></code>
|
|
: ^^^^
|
|
`----
|
|
|
|
x Text
|
|
,-[$DIR/tests/fixture/element/template/input.html:24:17]
|
|
24 | <code class="name"><<slot name="element-name">NEED NAME</slot>></code>
|
|
: ^^^^
|
|
`----
|
|
|
|
x Child
|
|
,-[$DIR/tests/fixture/element/template/input.html:24:17]
|
|
24 | <code class="name"><<slot name="element-name">NEED NAME</slot>></code>
|
|
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
`----
|
|
|
|
x Element
|
|
,-[$DIR/tests/fixture/element/template/input.html:24:17]
|
|
24 | <code class="name"><<slot name="element-name">NEED NAME</slot>></code>
|
|
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
`----
|
|
|
|
x Attribute
|
|
,-[$DIR/tests/fixture/element/template/input.html:24:17]
|
|
24 | <code class="name"><<slot name="element-name">NEED NAME</slot>></code>
|
|
: ^^^^^^^^^^^^^^^^^^^
|
|
`----
|
|
|
|
x Child
|
|
,-[$DIR/tests/fixture/element/template/input.html:24:17]
|
|
24 | <code class="name"><<slot name="element-name">NEED NAME</slot>></code>
|
|
: ^^^^^^^^^
|
|
`----
|
|
|
|
x Text
|
|
,-[$DIR/tests/fixture/element/template/input.html:24:17]
|
|
24 | <code class="name"><<slot name="element-name">NEED NAME</slot>></code>
|
|
: ^^^^^^^^^
|
|
`----
|
|
|
|
x Child
|
|
,-[$DIR/tests/fixture/element/template/input.html:24:17]
|
|
24 | <code class="name"><<slot name="element-name">NEED NAME</slot>></code>
|
|
: ^^^^
|
|
`----
|
|
|
|
x Text
|
|
,-[$DIR/tests/fixture/element/template/input.html:24:17]
|
|
24 | <code class="name"><<slot name="element-name">NEED NAME</slot>></code>
|
|
: ^^^^
|
|
`----
|
|
|
|
x Child
|
|
,-[$DIR/tests/fixture/element/template/input.html:24:17]
|
|
24 | ,-> <code class="name"><<slot name="element-name">NEED NAME</slot>></code>
|
|
25 | `-> <i class="desc"><slot name="description">NEED DESCRIPTION</slot></i>
|
|
`----
|
|
|
|
x Text
|
|
,-[$DIR/tests/fixture/element/template/input.html:24:17]
|
|
24 | ,-> <code class="name"><<slot name="element-name">NEED NAME</slot>></code>
|
|
25 | `-> <i class="desc"><slot name="description">NEED DESCRIPTION</slot></i>
|
|
`----
|
|
|
|
x Child
|
|
,-[$DIR/tests/fixture/element/template/input.html:25:17]
|
|
25 | <i class="desc"><slot name="description">NEED DESCRIPTION</slot></i>
|
|
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
`----
|
|
|
|
x Element
|
|
,-[$DIR/tests/fixture/element/template/input.html:25:17]
|
|
25 | <i class="desc"><slot name="description">NEED DESCRIPTION</slot></i>
|
|
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
`----
|
|
|
|
x Attribute
|
|
,-[$DIR/tests/fixture/element/template/input.html:25:17]
|
|
25 | <i class="desc"><slot name="description">NEED DESCRIPTION</slot></i>
|
|
: ^^^^^^^^^^^^
|
|
`----
|
|
|
|
x Child
|
|
,-[$DIR/tests/fixture/element/template/input.html:25:17]
|
|
25 | <i class="desc"><slot name="description">NEED DESCRIPTION</slot></i>
|
|
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
`----
|
|
|
|
x Element
|
|
,-[$DIR/tests/fixture/element/template/input.html:25:17]
|
|
25 | <i class="desc"><slot name="description">NEED DESCRIPTION</slot></i>
|
|
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
`----
|
|
|
|
x Attribute
|
|
,-[$DIR/tests/fixture/element/template/input.html:25:17]
|
|
25 | <i class="desc"><slot name="description">NEED DESCRIPTION</slot></i>
|
|
: ^^^^^^^^^^^^^^^^^^
|
|
`----
|
|
|
|
x Child
|
|
,-[$DIR/tests/fixture/element/template/input.html:25:17]
|
|
25 | <i class="desc"><slot name="description">NEED DESCRIPTION</slot></i>
|
|
: ^^^^^^^^^^^^^^^^
|
|
`----
|
|
|
|
x Text
|
|
,-[$DIR/tests/fixture/element/template/input.html:25:17]
|
|
25 | <i class="desc"><slot name="description">NEED DESCRIPTION</slot></i>
|
|
: ^^^^^^^^^^^^^^^^
|
|
`----
|
|
|
|
x Child
|
|
,-[$DIR/tests/fixture/element/template/input.html:25:17]
|
|
25 | ,-> <i class="desc"><slot name="description">NEED DESCRIPTION</slot></i>
|
|
26 | `-> </summary>
|
|
`----
|
|
|
|
x Text
|
|
,-[$DIR/tests/fixture/element/template/input.html:25:17]
|
|
25 | ,-> <i class="desc"><slot name="description">NEED DESCRIPTION</slot></i>
|
|
26 | `-> </summary>
|
|
`----
|
|
|
|
x Child
|
|
,-[$DIR/tests/fixture/element/template/input.html:26:13]
|
|
26 | ,-> </summary>
|
|
27 | `-> <div class="attributes">
|
|
`----
|
|
|
|
x Text
|
|
,-[$DIR/tests/fixture/element/template/input.html:26:13]
|
|
26 | ,-> </summary>
|
|
27 | `-> <div class="attributes">
|
|
`----
|
|
|
|
x Child
|
|
,-[$DIR/tests/fixture/element/template/input.html:27:13]
|
|
27 | ,-> <div class="attributes">
|
|
28 | | <h4>Attributes</h4>
|
|
29 | | <slot name="attributes"><p>None</p></slot>
|
|
30 | `-> </div>
|
|
`----
|
|
|
|
x Element
|
|
,-[$DIR/tests/fixture/element/template/input.html:27:13]
|
|
27 | ,-> <div class="attributes">
|
|
28 | | <h4>Attributes</h4>
|
|
29 | | <slot name="attributes"><p>None</p></slot>
|
|
30 | `-> </div>
|
|
`----
|
|
|
|
x Attribute
|
|
,-[$DIR/tests/fixture/element/template/input.html:27:13]
|
|
27 | <div class="attributes">
|
|
: ^^^^^^^^^^^^^^^^^^
|
|
`----
|
|
|
|
x Child
|
|
,-[$DIR/tests/fixture/element/template/input.html:27:13]
|
|
27 | ,-> <div class="attributes">
|
|
28 | `-> <h4>Attributes</h4>
|
|
`----
|
|
|
|
x Text
|
|
,-[$DIR/tests/fixture/element/template/input.html:27:13]
|
|
27 | ,-> <div class="attributes">
|
|
28 | `-> <h4>Attributes</h4>
|
|
`----
|
|
|
|
x Child
|
|
,-[$DIR/tests/fixture/element/template/input.html:28:17]
|
|
28 | <h4>Attributes</h4>
|
|
: ^^^^^^^^^^^^^^^^^^^
|
|
`----
|
|
|
|
x Element
|
|
,-[$DIR/tests/fixture/element/template/input.html:28:17]
|
|
28 | <h4>Attributes</h4>
|
|
: ^^^^^^^^^^^^^^^^^^^
|
|
`----
|
|
|
|
x Child
|
|
,-[$DIR/tests/fixture/element/template/input.html:28:17]
|
|
28 | <h4>Attributes</h4>
|
|
: ^^^^^^^^^^
|
|
`----
|
|
|
|
x Text
|
|
,-[$DIR/tests/fixture/element/template/input.html:28:17]
|
|
28 | <h4>Attributes</h4>
|
|
: ^^^^^^^^^^
|
|
`----
|
|
|
|
x Child
|
|
,-[$DIR/tests/fixture/element/template/input.html:28:17]
|
|
28 | ,-> <h4>Attributes</h4>
|
|
29 | `-> <slot name="attributes"><p>None</p></slot>
|
|
`----
|
|
|
|
x Text
|
|
,-[$DIR/tests/fixture/element/template/input.html:28:17]
|
|
28 | ,-> <h4>Attributes</h4>
|
|
29 | `-> <slot name="attributes"><p>None</p></slot>
|
|
`----
|
|
|
|
x Child
|
|
,-[$DIR/tests/fixture/element/template/input.html:29:17]
|
|
29 | <slot name="attributes"><p>None</p></slot>
|
|
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
`----
|
|
|
|
x Element
|
|
,-[$DIR/tests/fixture/element/template/input.html:29:17]
|
|
29 | <slot name="attributes"><p>None</p></slot>
|
|
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
`----
|
|
|
|
x Attribute
|
|
,-[$DIR/tests/fixture/element/template/input.html:29:17]
|
|
29 | <slot name="attributes"><p>None</p></slot>
|
|
: ^^^^^^^^^^^^^^^^^
|
|
`----
|
|
|
|
x Child
|
|
,-[$DIR/tests/fixture/element/template/input.html:29:17]
|
|
29 | <slot name="attributes"><p>None</p></slot>
|
|
: ^^^^^^^^^^^
|
|
`----
|
|
|
|
x Element
|
|
,-[$DIR/tests/fixture/element/template/input.html:29:17]
|
|
29 | <slot name="attributes"><p>None</p></slot>
|
|
: ^^^^^^^^^^^
|
|
`----
|
|
|
|
x Child
|
|
,-[$DIR/tests/fixture/element/template/input.html:29:17]
|
|
29 | <slot name="attributes"><p>None</p></slot>
|
|
: ^^^^
|
|
`----
|
|
|
|
x Text
|
|
,-[$DIR/tests/fixture/element/template/input.html:29:17]
|
|
29 | <slot name="attributes"><p>None</p></slot>
|
|
: ^^^^
|
|
`----
|
|
|
|
x Child
|
|
,-[$DIR/tests/fixture/element/template/input.html:29:17]
|
|
29 | ,-> <slot name="attributes"><p>None</p></slot>
|
|
30 | `-> </div>
|
|
`----
|
|
|
|
x Text
|
|
,-[$DIR/tests/fixture/element/template/input.html:29:17]
|
|
29 | ,-> <slot name="attributes"><p>None</p></slot>
|
|
30 | `-> </div>
|
|
`----
|
|
|
|
x Child
|
|
,-[$DIR/tests/fixture/element/template/input.html:30:13]
|
|
30 | ,-> </div>
|
|
31 | `-> </details>
|
|
`----
|
|
|
|
x Text
|
|
,-[$DIR/tests/fixture/element/template/input.html:30:13]
|
|
30 | ,-> </div>
|
|
31 | `-> </details>
|
|
`----
|
|
|
|
x Child
|
|
,-[$DIR/tests/fixture/element/template/input.html:31:9]
|
|
31 | ,-> </details>
|
|
32 | `-> <hr>
|
|
`----
|
|
|
|
x Text
|
|
,-[$DIR/tests/fixture/element/template/input.html:31:9]
|
|
31 | ,-> </details>
|
|
32 | `-> <hr>
|
|
`----
|
|
|
|
x Child
|
|
,-[$DIR/tests/fixture/element/template/input.html:32:9]
|
|
32 | <hr>
|
|
: ^^^^
|
|
`----
|
|
|
|
x Element
|
|
,-[$DIR/tests/fixture/element/template/input.html:32:9]
|
|
32 | <hr>
|
|
: ^^^^
|
|
`----
|
|
|
|
x Child
|
|
,-[$DIR/tests/fixture/element/template/input.html:32:9]
|
|
32 | ,-> <hr>
|
|
33 | `-> </template>
|
|
`----
|
|
|
|
x Text
|
|
,-[$DIR/tests/fixture/element/template/input.html:32:9]
|
|
32 | ,-> <hr>
|
|
33 | `-> </template>
|
|
`----
|
|
|
|
x Child
|
|
,-[$DIR/tests/fixture/element/template/input.html:33:5]
|
|
33 | ,-> </template>
|
|
34 | |
|
|
35 | `-> <template id="tmpl1">
|
|
`----
|
|
|
|
x Text
|
|
,-[$DIR/tests/fixture/element/template/input.html:33:5]
|
|
33 | ,-> </template>
|
|
34 | |
|
|
35 | `-> <template id="tmpl1">
|
|
`----
|
|
|
|
x Child
|
|
,-[$DIR/tests/fixture/element/template/input.html:35:5]
|
|
35 | ,-> <template id="tmpl1">
|
|
36 | | <div id="div1">This is div inside template</div>
|
|
37 | | <div id="div2">This is another div inside template</div>
|
|
38 | | <template id="tmpl2"><div id="div3">This is div inside nested template</div>
|
|
39 | | <div id="div4">This is another div inside nested template</div>
|
|
40 | | </template>
|
|
41 | `-> </template>
|
|
`----
|
|
|
|
x Element
|
|
,-[$DIR/tests/fixture/element/template/input.html:35:5]
|
|
35 | ,-> <template id="tmpl1">
|
|
36 | | <div id="div1">This is div inside template</div>
|
|
37 | | <div id="div2">This is another div inside template</div>
|
|
38 | | <template id="tmpl2"><div id="div3">This is div inside nested template</div>
|
|
39 | | <div id="div4">This is another div inside nested template</div>
|
|
40 | | </template>
|
|
41 | `-> </template>
|
|
`----
|
|
|
|
x Attribute
|
|
,-[$DIR/tests/fixture/element/template/input.html:35:5]
|
|
35 | <template id="tmpl1">
|
|
: ^^^^^^^^^^
|
|
`----
|
|
|
|
x DocumentFragment
|
|
,-[$DIR/tests/fixture/element/template/input.html:35:5]
|
|
35 | ,-> <template id="tmpl1">
|
|
36 | | <div id="div1">This is div inside template</div>
|
|
37 | | <div id="div2">This is another div inside template</div>
|
|
38 | | <template id="tmpl2"><div id="div3">This is div inside nested template</div>
|
|
39 | | <div id="div4">This is another div inside nested template</div>
|
|
40 | | </template>
|
|
41 | `-> </template>
|
|
`----
|
|
|
|
x Child
|
|
,-[$DIR/tests/fixture/element/template/input.html:35:5]
|
|
35 | ,-> <template id="tmpl1">
|
|
36 | `-> <div id="div1">This is div inside template</div>
|
|
`----
|
|
|
|
x Text
|
|
,-[$DIR/tests/fixture/element/template/input.html:35:5]
|
|
35 | ,-> <template id="tmpl1">
|
|
36 | `-> <div id="div1">This is div inside template</div>
|
|
`----
|
|
|
|
x Child
|
|
,-[$DIR/tests/fixture/element/template/input.html:36:9]
|
|
36 | <div id="div1">This is div inside template</div>
|
|
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
`----
|
|
|
|
x Element
|
|
,-[$DIR/tests/fixture/element/template/input.html:36:9]
|
|
36 | <div id="div1">This is div inside template</div>
|
|
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
`----
|
|
|
|
x Attribute
|
|
,-[$DIR/tests/fixture/element/template/input.html:36:9]
|
|
36 | <div id="div1">This is div inside template</div>
|
|
: ^^^^^^^^^
|
|
`----
|
|
|
|
x Child
|
|
,-[$DIR/tests/fixture/element/template/input.html:36:9]
|
|
36 | <div id="div1">This is div inside template</div>
|
|
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
`----
|
|
|
|
x Text
|
|
,-[$DIR/tests/fixture/element/template/input.html:36:9]
|
|
36 | <div id="div1">This is div inside template</div>
|
|
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
`----
|
|
|
|
x Child
|
|
,-[$DIR/tests/fixture/element/template/input.html:36:9]
|
|
36 | ,-> <div id="div1">This is div inside template</div>
|
|
37 | `-> <div id="div2">This is another div inside template</div>
|
|
`----
|
|
|
|
x Text
|
|
,-[$DIR/tests/fixture/element/template/input.html:36:9]
|
|
36 | ,-> <div id="div1">This is div inside template</div>
|
|
37 | `-> <div id="div2">This is another div inside template</div>
|
|
`----
|
|
|
|
x Child
|
|
,-[$DIR/tests/fixture/element/template/input.html:37:9]
|
|
37 | <div id="div2">This is another div inside template</div>
|
|
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
`----
|
|
|
|
x Element
|
|
,-[$DIR/tests/fixture/element/template/input.html:37:9]
|
|
37 | <div id="div2">This is another div inside template</div>
|
|
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
`----
|
|
|
|
x Attribute
|
|
,-[$DIR/tests/fixture/element/template/input.html:37:9]
|
|
37 | <div id="div2">This is another div inside template</div>
|
|
: ^^^^^^^^^
|
|
`----
|
|
|
|
x Child
|
|
,-[$DIR/tests/fixture/element/template/input.html:37:9]
|
|
37 | <div id="div2">This is another div inside template</div>
|
|
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
`----
|
|
|
|
x Text
|
|
,-[$DIR/tests/fixture/element/template/input.html:37:9]
|
|
37 | <div id="div2">This is another div inside template</div>
|
|
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
`----
|
|
|
|
x Child
|
|
,-[$DIR/tests/fixture/element/template/input.html:37:9]
|
|
37 | ,-> <div id="div2">This is another div inside template</div>
|
|
38 | `-> <template id="tmpl2"><div id="div3">This is div inside nested template</div>
|
|
`----
|
|
|
|
x Text
|
|
,-[$DIR/tests/fixture/element/template/input.html:37:9]
|
|
37 | ,-> <div id="div2">This is another div inside template</div>
|
|
38 | `-> <template id="tmpl2"><div id="div3">This is div inside nested template</div>
|
|
`----
|
|
|
|
x Child
|
|
,-[$DIR/tests/fixture/element/template/input.html:38:9]
|
|
38 | ,-> <template id="tmpl2"><div id="div3">This is div inside nested template</div>
|
|
39 | | <div id="div4">This is another div inside nested template</div>
|
|
40 | `-> </template>
|
|
`----
|
|
|
|
x Element
|
|
,-[$DIR/tests/fixture/element/template/input.html:38:9]
|
|
38 | ,-> <template id="tmpl2"><div id="div3">This is div inside nested template</div>
|
|
39 | | <div id="div4">This is another div inside nested template</div>
|
|
40 | `-> </template>
|
|
`----
|
|
|
|
x Attribute
|
|
,-[$DIR/tests/fixture/element/template/input.html:38:9]
|
|
38 | <template id="tmpl2"><div id="div3">This is div inside nested template</div>
|
|
: ^^^^^^^^^^
|
|
`----
|
|
|
|
x DocumentFragment
|
|
,-[$DIR/tests/fixture/element/template/input.html:38:9]
|
|
38 | ,-> <template id="tmpl2"><div id="div3">This is div inside nested template</div>
|
|
39 | | <div id="div4">This is another div inside nested template</div>
|
|
40 | `-> </template>
|
|
`----
|
|
|
|
x Child
|
|
,-[$DIR/tests/fixture/element/template/input.html:38:9]
|
|
38 | <template id="tmpl2"><div id="div3">This is div inside nested template</div>
|
|
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
`----
|
|
|
|
x Element
|
|
,-[$DIR/tests/fixture/element/template/input.html:38:9]
|
|
38 | <template id="tmpl2"><div id="div3">This is div inside nested template</div>
|
|
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
`----
|
|
|
|
x Attribute
|
|
,-[$DIR/tests/fixture/element/template/input.html:38:9]
|
|
38 | <template id="tmpl2"><div id="div3">This is div inside nested template</div>
|
|
: ^^^^^^^^^
|
|
`----
|
|
|
|
x Child
|
|
,-[$DIR/tests/fixture/element/template/input.html:38:9]
|
|
38 | <template id="tmpl2"><div id="div3">This is div inside nested template</div>
|
|
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
`----
|
|
|
|
x Text
|
|
,-[$DIR/tests/fixture/element/template/input.html:38:9]
|
|
38 | <template id="tmpl2"><div id="div3">This is div inside nested template</div>
|
|
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
`----
|
|
|
|
x Child
|
|
,-[$DIR/tests/fixture/element/template/input.html:38:9]
|
|
38 | ,-> <template id="tmpl2"><div id="div3">This is div inside nested template</div>
|
|
39 | `-> <div id="div4">This is another div inside nested template</div>
|
|
`----
|
|
|
|
x Text
|
|
,-[$DIR/tests/fixture/element/template/input.html:38:9]
|
|
38 | ,-> <template id="tmpl2"><div id="div3">This is div inside nested template</div>
|
|
39 | `-> <div id="div4">This is another div inside nested template</div>
|
|
`----
|
|
|
|
x Child
|
|
,-[$DIR/tests/fixture/element/template/input.html:39:13]
|
|
39 | <div id="div4">This is another div inside nested template</div>
|
|
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
`----
|
|
|
|
x Element
|
|
,-[$DIR/tests/fixture/element/template/input.html:39:13]
|
|
39 | <div id="div4">This is another div inside nested template</div>
|
|
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
`----
|
|
|
|
x Attribute
|
|
,-[$DIR/tests/fixture/element/template/input.html:39:13]
|
|
39 | <div id="div4">This is another div inside nested template</div>
|
|
: ^^^^^^^^^
|
|
`----
|
|
|
|
x Child
|
|
,-[$DIR/tests/fixture/element/template/input.html:39:13]
|
|
39 | <div id="div4">This is another div inside nested template</div>
|
|
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
`----
|
|
|
|
x Text
|
|
,-[$DIR/tests/fixture/element/template/input.html:39:13]
|
|
39 | <div id="div4">This is another div inside nested template</div>
|
|
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
`----
|
|
|
|
x Child
|
|
,-[$DIR/tests/fixture/element/template/input.html:39:13]
|
|
39 | ,-> <div id="div4">This is another div inside nested template</div>
|
|
40 | `-> </template>
|
|
`----
|
|
|
|
x Text
|
|
,-[$DIR/tests/fixture/element/template/input.html:39:13]
|
|
39 | ,-> <div id="div4">This is another div inside nested template</div>
|
|
40 | `-> </template>
|
|
`----
|
|
|
|
x Child
|
|
,-[$DIR/tests/fixture/element/template/input.html:40:9]
|
|
40 | ,-> </template>
|
|
41 | `-> </template>
|
|
`----
|
|
|
|
x Text
|
|
,-[$DIR/tests/fixture/element/template/input.html:40:9]
|
|
40 | ,-> </template>
|
|
41 | `-> </template>
|
|
`----
|
|
|
|
x Child
|
|
,-[$DIR/tests/fixture/element/template/input.html:41:5]
|
|
41 | ,-> </template>
|
|
42 | |
|
|
43 | `-> <template><div>test</div></template>
|
|
`----
|
|
|
|
x Text
|
|
,-[$DIR/tests/fixture/element/template/input.html:41:5]
|
|
41 | ,-> </template>
|
|
42 | |
|
|
43 | `-> <template><div>test</div></template>
|
|
`----
|
|
|
|
x Child
|
|
,-[$DIR/tests/fixture/element/template/input.html:43:5]
|
|
43 | <template><div>test</div></template>
|
|
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
`----
|
|
|
|
x Element
|
|
,-[$DIR/tests/fixture/element/template/input.html:43:5]
|
|
43 | <template><div>test</div></template>
|
|
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
`----
|
|
|
|
x DocumentFragment
|
|
,-[$DIR/tests/fixture/element/template/input.html:43:5]
|
|
43 | <template><div>test</div></template>
|
|
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
`----
|
|
|
|
x Child
|
|
,-[$DIR/tests/fixture/element/template/input.html:43:5]
|
|
43 | <template><div>test</div></template>
|
|
: ^^^^^^^^^^^^^^^
|
|
`----
|
|
|
|
x Element
|
|
,-[$DIR/tests/fixture/element/template/input.html:43:5]
|
|
43 | <template><div>test</div></template>
|
|
: ^^^^^^^^^^^^^^^
|
|
`----
|
|
|
|
x Child
|
|
,-[$DIR/tests/fixture/element/template/input.html:43:5]
|
|
43 | <template><div>test</div></template>
|
|
: ^^^^
|
|
`----
|
|
|
|
x Text
|
|
,-[$DIR/tests/fixture/element/template/input.html:43:5]
|
|
43 | <template><div>test</div></template>
|
|
: ^^^^
|
|
`----
|
|
|
|
x Child
|
|
,-[$DIR/tests/fixture/element/template/input.html:43:5]
|
|
43 | ,-> <template><div>test</div></template>
|
|
44 | | </body>
|
|
45 | `-> </html>
|
|
`----
|
|
|
|
x Text
|
|
,-[$DIR/tests/fixture/element/template/input.html:43:5]
|
|
43 | ,-> <template><div>test</div></template>
|
|
44 | | </body>
|
|
45 | `-> </html>
|
|
`----
|