Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
81145 views
1
{
2
"name": "Comment edge-cases",
3
"options": {},
4
"html": "<!-foo><!-- --- --><!--foo",
5
"expected": [
6
{
7
"event": "processinginstruction",
8
"data": [
9
"!-foo",
10
"!-foo"
11
]
12
},
13
{ "event": "comment", "data": [ " --- " ] },
14
{ "event": "commentend", "data": [] },
15
{ "event": "comment", "data": [ "foo" ] },
16
{ "event": "commentend", "data": [] }
17
]
18
}
19