cs142/project3/node_modules/htmlparser2/test/Events/28-cdata_in_html.json

9 lines
203 B
JSON
Raw Normal View History

2020-08-01 22:26:11 +00:00
{
"name": "CDATA in HTML",
"options": {},
"html": "<![CDATA[ foo ]]>",
"expected": [
{ "event": "comment", "data": [ "[CDATA[ foo ]]" ] },
{ "event": "commentend", "data": [] }
]
}