| OLD | NEW |
| 1 {"tests": [ | 1 {"tests": [ |
| 2 | 2 |
| 3 {"description": "Undefined named entity in attribute value ending in semicolon a
nd whose name starts with a known entity name.", | 3 {"description": "Undefined named entity in attribute value ending in semicolon a
nd whose name starts with a known entity name.", |
| 4 "input":"<h a='¬i;'>", | 4 "input":"<h a='¬i;'>", |
| 5 "output": ["ParseError", ["StartTag", "h", {"a": "¬i;"}]]}, | 5 "output": ["ParseError", ["StartTag", "h", {"a": "¬i;"}]]}, |
| 6 | 6 |
| 7 {"description": "Entity name followed by the equals sign in an attribute value."
, | 7 {"description": "Entity name followed by the equals sign in an attribute value."
, |
| 8 "input":"<h a='&lang='>", | 8 "input":"<h a='&lang='>", |
| 9 "output": ["ParseError", ["StartTag", "h", {"a": "&lang="}]]}, | 9 "output": ["ParseError", ["StartTag", "h", {"a": "&lang="}]]}, |
| 10 | 10 |
| (...skipping 263 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 274 | 274 |
| 275 {"description": "Decimal numeric entity followed by hex character f.", | 275 {"description": "Decimal numeric entity followed by hex character f.", |
| 276 "input":"af", | 276 "input":"af", |
| 277 "output": ["ParseError", ["Character", "af"]]}, | 277 "output": ["ParseError", ["Character", "af"]]}, |
| 278 | 278 |
| 279 {"description": "Decimal numeric entity followed by hex character A.", | 279 {"description": "Decimal numeric entity followed by hex character A.", |
| 280 "input":"aF", | 280 "input":"aF", |
| 281 "output": ["ParseError", ["Character", "aF"]]} | 281 "output": ["ParseError", ["Character", "aF"]]} |
| 282 | 282 |
| 283 ]} | 283 ]} |
| OLD | NEW |