|
28 | 28 | "input":"<z ====>", |
29 | 29 | "output":["ParseError", "ParseError", "ParseError", ["StartTag", "z", {"=": "=="}]]}, |
30 | 30 |
|
31 | | -{"description":"Allowed \" after ampersand in attribute value", |
| 31 | +{"description":"\" after ampersand in double-quoted attribute value", |
32 | 32 | "input":"<z z=\"&\">", |
33 | 33 | "output":[["StartTag", "z", {"z": "&"}]]}, |
34 | 34 |
|
35 | | -{"description":"Non-allowed ' after ampersand in attribute value", |
| 35 | +{"description":"' after ampersand in double-quoted attribute value", |
36 | 36 | "input":"<z z=\"&'\">", |
37 | | -"output":["ParseError", ["StartTag", "z", {"z": "&'"}]]}, |
| 37 | +"output":[["StartTag", "z", {"z": "&'"}]]}, |
38 | 38 |
|
39 | | -{"description":"Allowed ' after ampersand in attribute value", |
| 39 | +{"description":"' after ampersand in single-quoted attribute value", |
40 | 40 | "input":"<z z='&'>", |
41 | 41 | "output":[["StartTag", "z", {"z": "&"}]]}, |
42 | 42 |
|
43 | | -{"description":"Non-allowed \" after ampersand in attribute value", |
| 43 | +{"description":"\" after ampersand in single-quoted attribute value", |
44 | 44 | "input":"<z z='&\"'>", |
45 | | -"output":["ParseError", ["StartTag", "z", {"z": "&\""}]]}, |
| 45 | +"output":[["StartTag", "z", {"z": "&\""}]]}, |
46 | 46 |
|
47 | 47 | {"description":"Text after bogus character reference", |
48 | 48 | "input":"<z z='&xlink_xmlns;'>bar<z>", |
|
0 commit comments