123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- {
- "name": "double attribute",
- "options": {
- "handler": {},
- "parser": {}
- },
- "html": "<h1 class=test class=boo></h1>",
- "expected": [
- {
- "event": "opentagname",
- "data": [
- "h1"
- ]
- },
- {
- "event": "attribute",
- "data": [
- "class",
- "test"
- ]
- },
- {
- "event": "attribute",
- "data": [
- "class",
- "boo"
- ]
- },
- {
- "event": "opentag",
- "data": [
- "h1",
- {
- "class": "test"
- }
- ]
- },
- {
- "event": "closetag",
- "data": [
- "h1"
- ]
- }
- ]
- }
|