anorgatarrak-wordpress-theme/node_modules/htmlparser2/test/Events/26-not-quite-closed.json

36 lines
472 B
JSON
Raw Normal View History

{
"name": "Not quite closed",
"options": {},
"html": "<foo /bar></foo bar>",
"expected": [
{
"event": "opentagname",
"data": [
"foo"
]
},
{
"event": "attribute",
"data": [
"bar",
""
]
},
{
"event": "opentag",
"data": [
"foo",
{
"bar": ""
}
]
},
{
"event": "closetag",
"data": [
"foo"
]
}
]
}