mirror of
https://github.com/swc-project/swc.git
synced 2024-12-22 13:11:31 +03:00
824 lines
27 KiB
Plaintext
824 lines
27 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 | | </body>
|
|
35 | `-> </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 | | </body>
|
|
35 | `-> </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 | | </body>
|
|
35 | `-> </html>
|
|
`----
|
|
|
|
x Attribute
|
|
,-[$DIR/tests/fixture/element/template/input.html:1:1]
|
|
1 | <!doctype html>
|
|
: ^
|
|
`----
|
|
|
|
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 | | </body>
|
|
35 | `-> </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 | | </body>
|
|
35 | `-> </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 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 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 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 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 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 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 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 | | </body>
|
|
35 | `-> </html>
|
|
`----
|
|
|
|
x Text
|
|
,-[$DIR/tests/fixture/element/template/input.html:33:5]
|
|
33 | ,-> </template>
|
|
34 | | </body>
|
|
35 | `-> </html>
|
|
`----
|