Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(96)

Side by Side Diff: test/data/tokenizer/escapeFlag.test

Issue 10916294: switch html5lib to new pkg layout (Closed) Base URL: https://github.com/dart-lang/html5lib.git@master
Patch Set: Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « test/data/tokenizer/entities.test ('k') | test/data/tokenizer/namedEntities.test » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
24 "input":" &amp; <!-- &amp; --> &amp; </xmp>", 24 "input":" &amp; <!-- &amp; --> &amp; </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 ]}
OLDNEW
« no previous file with comments | « test/data/tokenizer/entities.test ('k') | test/data/tokenizer/namedEntities.test » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698