1{ 2 "name": "double attribute", 3 "options": { 4 "handler": {}, 5 "parser": {} 6 }, 7 "html": "<h1 class=test class=boo></h1>", 8 "expected": [ 9 { 10 "event": "opentagname", 11 "data": [ 12 "h1" 13 ] 14 }, 15 { 16 "event": "attribute", 17 "data": [ 18 "class", 19 "test" 20 ] 21 }, 22 { 23 "event": "attribute", 24 "data": [ 25 "class", 26 "boo" 27 ] 28 }, 29 { 30 "event": "opentag", 31 "data": [ 32 "h1", 33 { 34 "class": "test" 35 } 36 ] 37 }, 38 { 39 "event": "closetag", 40 "data": [ 41 "h1" 42 ] 43 } 44 ] 45} 46