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