1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- {
- "name": "Entities in attributes",
- "options": {
- "handler": {},
- "parser": {"decodeEntities": true}
- },
- "html": "<foo bar=& baz=\"&\" boo='&' noo=>",
- "expected": [
- {
- "event": "opentagname",
- "data": [
- "foo"
- ]
- },
- {
- "event": "attribute",
- "data": [
- "bar",
- "&"
- ]
- },
- {
- "event": "attribute",
- "data": [
- "baz",
- "&"
- ]
- },
- {
- "event": "attribute",
- "data": [
- "boo",
- "&"
- ]
- },
- {
- "event": "attribute",
- "data": [
- "noo",
- ""
- ]
- },
- {
- "event": "opentag",
- "data": [
- "foo",
- {
- "bar": "&",
- "baz": "&",
- "boo": "&",
- "noo": ""
- }
- ]
- },
- {
- "event": "closetag",
- "data": [
- "foo"
- ]
- }
- ]
- }
|