1{ 2 "tests": [ 3 { 4 "fragmentContext": null, 5 "description": "<isindex>", 6 "input": "<isindex>", 7 "output": [ 8 [ 9 "StartTag", 10 "isindex", 11 {} 12 ] 13 ] 14 }, 15 { 16 "fragmentContext": null, 17 "description": "<isindex name=\"A\" action=\"B\" prompt=\"C\" foo=\"D\">", 18 "input": "<isindex name=\"A\" action=\"B\" prompt=\"C\" foo=\"D\">", 19 "output": [ 20 [ 21 "StartTag", 22 "isindex", 23 { 24 "name": "A", 25 "action": "B", 26 "prompt": "C", 27 "foo": "D" 28 } 29 ] 30 ] 31 }, 32 { 33 "fragmentContext": null, 34 "description": "<form><isindex>", 35 "input": "<form><isindex>", 36 "output": [ 37 [ 38 "StartTag", 39 "form", 40 {} 41 ], 42 [ 43 "StartTag", 44 "isindex", 45 {} 46 ] 47 ] 48 }, 49 { 50 "fragmentContext": null, 51 "description": "<!doctype html><isindex>x</isindex>x", 52 "input": "<!doctype html><isindex>x</isindex>x", 53 "output": [ 54 [ 55 "DOCTYPE", 56 "html", 57 null, 58 null, 59 true 60 ], 61 [ 62 "StartTag", 63 "isindex", 64 {} 65 ], 66 [ 67 "Character", 68 "x" 69 ], 70 [ 71 "EndTag", 72 "isindex" 73 ], 74 [ 75 "Character", 76 "x" 77 ] 78 ] 79 } 80 ] 81}