swc/crates/swc_html_parser/tests/fixture/comment/multiline/output.json

168 lines
4.1 KiB
JSON
Raw Normal View History

2022-04-04 07:12:45 +03:00
{
"type": "Document",
"span": {
"start": 1,
"end": 201,
2022-04-04 07:12:45 +03:00
"ctxt": 0
},
"mode": "no-quirks",
2022-04-04 07:12:45 +03:00
"children": [
{
"type": "DocumentType",
2022-04-04 07:12:45 +03:00
"span": {
"start": 1,
"end": 16,
2022-04-04 07:12:45 +03:00
"ctxt": 0
},
"name": "html",
"publicId": null,
"systemId": null,
"raw": "<!DOCTYPE html>"
2022-04-04 07:12:45 +03:00
},
{
"type": "Element",
2022-04-04 07:12:45 +03:00
"span": {
"start": 17,
"end": 201,
2022-04-04 07:12:45 +03:00
"ctxt": 0
},
"tagName": "html",
"namespace": "http://www.w3.org/1999/xhtml",
"attributes": [],
"children": [
{
"type": "Element",
"span": {
"start": 0,
2022-06-07 17:33:06 +03:00
"end": 0,
"ctxt": 0
},
"tagName": "head",
"namespace": "http://www.w3.org/1999/xhtml",
"attributes": [],
"children": [],
"content": null,
"isSelfClosing": false
},
{
"type": "Element",
"span": {
"start": 24,
"end": 201,
"ctxt": 0
},
"tagName": "body",
"namespace": "http://www.w3.org/1999/xhtml",
"attributes": [],
"children": [
{
"type": "Text",
"span": {
"start": 30,
"end": 32,
"ctxt": 0
},
2022-07-09 07:19:14 +03:00
"data": "\n\n",
"raw": "\n\n"
},
{
"type": "Element",
"span": {
"start": 32,
"end": 59,
"ctxt": 0
},
"tagName": "p",
"namespace": "http://www.w3.org/1999/xhtml",
"attributes": [],
"children": [
{
"type": "Text",
"span": {
"start": 35,
"end": 55,
"ctxt": 0
},
2022-07-09 07:19:14 +03:00
"data": "This is a paragraph.",
"raw": "This is a paragraph."
}
],
"content": null,
"isSelfClosing": false
},
{
"type": "Text",
"span": {
"start": 59,
"end": 60,
"ctxt": 0
},
2022-07-09 07:19:14 +03:00
"data": "\n",
"raw": "\n"
},
{
"type": "Comment",
"span": {
"start": 60,
"end": 151,
"ctxt": 0
},
"data": "\n<p>Look at this cool image:</p>\n<img border=\"0\" src=\"pic_trulli.jpg\" alt=\"Trulli\">\n",
"raw": "<!--\n<p>Look at this cool image:</p>\n<img border=\"0\" src=\"pic_trulli.jpg\" alt=\"Trulli\">\n-->"
},
{
"type": "Text",
"span": {
"start": 151,
"end": 152,
"ctxt": 0
},
2022-07-09 07:19:14 +03:00
"data": "\n",
"raw": "\n"
},
{
"type": "Element",
"span": {
"start": 152,
"end": 183,
"ctxt": 0
},
"tagName": "p",
"namespace": "http://www.w3.org/1999/xhtml",
"attributes": [],
"children": [
{
"type": "Text",
"span": {
"start": 155,
"end": 179,
"ctxt": 0
},
2022-07-09 07:19:14 +03:00
"data": "This is a paragraph too.",
"raw": "This is a paragraph too."
}
],
"content": null,
"isSelfClosing": false
},
{
"type": "Text",
"span": {
"start": 183,
"end": 201,
"ctxt": 0
},
2022-07-09 07:19:14 +03:00
"data": "\n\n\n\n",
"raw": "\n\n\n\n"
}
],
"content": null,
"isSelfClosing": false
}
],
"content": null,
"isSelfClosing": false
2022-04-04 07:12:45 +03:00
}
]
}