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

Side by Side Diff: test/data/tokenizer/numericEntities.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/namedEntities.test ('k') | test/data/tokenizer/pendingSpecChanges.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": "Invalid numeric entity character U+0000", 3 {"description": "Invalid numeric entity character U+0000",
4 "input": "�", 4 "input": "�",
5 "output": ["ParseError", ["Character", "\uFFFD"]]}, 5 "output": ["ParseError", ["Character", "\uFFFD"]]},
6 6
7 {"description": "Invalid numeric entity character U+0001", 7 {"description": "Invalid numeric entity character U+0001",
8 "input": "", 8 "input": "",
9 "output": ["ParseError", ["Character", "\u0001"]]}, 9 "output": ["ParseError", ["Character", "\u0001"]]},
10 10
(...skipping 1293 matching lines...) Expand 10 before | Expand all | Expand 10 after
1304 "input": "􀀀", 1304 "input": "􀀀",
1305 "output": [["Character", "\uDBC0\uDC00"]]}, 1305 "output": [["Character", "\uDBC0\uDC00"]]},
1306 1306
1307 {"description": "Valid numeric entity character U+10FFFD", 1307 {"description": "Valid numeric entity character U+10FFFD",
1308 "input": "􏿽", 1308 "input": "􏿽",
1309 "output": [["Character", "\uDBFF\uDFFD"]]} 1309 "output": [["Character", "\uDBFF\uDFFD"]]}
1310 1310
1311 ]} 1311 ]}
1312 1312
1313 1313
OLDNEW
« no previous file with comments | « test/data/tokenizer/namedEntities.test ('k') | test/data/tokenizer/pendingSpecChanges.test » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698