| OLD | NEW |
| 1 {"tests": [ | 1 {"tests": [ |
| 2 | 2 |
| 3 {"description":"Commented close tag in RCDATA or RAWTEXT", | 3 {"description":"Commented close tag in RCDATA or RAWTEXT", |
| 4 "initialStates":["RCDATA state", "RAWTEXT state"], | 4 "initialStates":["RCDATA state", "RAWTEXT state"], |
| 5 "lastStartTag":"xmp", | 5 "lastStartTag":"xmp", |
| 6 "input":"foo<!--</xmp>--></xmp>", | 6 "input":"foo<!--</xmp>--></xmp>", |
| 7 "output":[["Character", "foo<!--"], ["EndTag", "xmp"], ["Character", "-->"], ["E
ndTag", "xmp"]]}, | 7 "output":[["Character", "foo<!--"], ["EndTag", "xmp"], ["Character", "-->"], ["E
ndTag", "xmp"]]}, |
| 8 | 8 |
| 9 {"description":"Bogus comment in RCDATA or RAWTEXT", | 9 {"description":"Bogus comment in RCDATA or RAWTEXT", |
| 10 "initialStates":["RCDATA state", "RAWTEXT state"], | 10 "initialStates":["RCDATA state", "RAWTEXT state"], |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 "input":" & <!-- & --> & </xmp>", | 24 "input":" & <!-- & --> & </xmp>", |
| 25 "output":[["Character", " & <!-- & --> & "], ["EndTag", "xmp"]]}, | 25 "output":[["Character", " & <!-- & --> & "], ["EndTag", "xmp"]]}, |
| 26 | 26 |
| 27 {"description":"Incorrect comment ending sequences in RCDATA or RAWTEXT", | 27 {"description":"Incorrect comment ending sequences in RCDATA or RAWTEXT", |
| 28 "initialStates":["RCDATA state", "RAWTEXT state"], | 28 "initialStates":["RCDATA state", "RAWTEXT state"], |
| 29 "lastStartTag":"xmp", | 29 "lastStartTag":"xmp", |
| 30 "input":"foo<!-- x --x>x-- >x--!>x--<></xmp>", | 30 "input":"foo<!-- x --x>x-- >x--!>x--<></xmp>", |
| 31 "output":[["Character", "foo<!-- x --x>x-- >x--!>x--<>"], ["EndTag", "xmp"]]} | 31 "output":[["Character", "foo<!-- x --x>x-- >x--!>x--<>"], ["EndTag", "xmp"]]} |
| 32 | 32 |
| 33 ]} | 33 ]} |
| OLD | NEW |