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

Side by Side Diff: test/data/tokenizer/unicodeChars.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/test4.test ('k') | test/data/tokenizer/unicodeCharsProblematic.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 Unicode character U+0001", 3 {"description": "Invalid Unicode character U+0001",
4 "input": "\u0001", 4 "input": "\u0001",
5 "output": ["ParseError", ["Character", "\u0001"]]}, 5 "output": ["ParseError", ["Character", "\u0001"]]},
6 6
7 {"description": "Invalid Unicode character U+0002", 7 {"description": "Invalid Unicode character U+0002",
8 "input": "\u0002", 8 "input": "\u0002",
9 "output": ["ParseError", ["Character", "\u0002"]]}, 9 "output": ["ParseError", ["Character", "\u0002"]]},
10 10
(...skipping 1275 matching lines...) Expand 10 before | Expand all | Expand 10 after
1286 1286
1287 {"description": "Valid Unicode character U+100000", 1287 {"description": "Valid Unicode character U+100000",
1288 "input": "\uDBC0\uDC00", 1288 "input": "\uDBC0\uDC00",
1289 "output": [["Character", "\uDBC0\uDC00"]]}, 1289 "output": [["Character", "\uDBC0\uDC00"]]},
1290 1290
1291 {"description": "Valid Unicode character U+10FFFD", 1291 {"description": "Valid Unicode character U+10FFFD",
1292 "input": "\uDBFF\uDFFD", 1292 "input": "\uDBFF\uDFFD",
1293 "output": [["Character", "\uDBFF\uDFFD"]]} 1293 "output": [["Character", "\uDBFF\uDFFD"]]}
1294 1294
1295 ]} 1295 ]}
OLDNEW
« no previous file with comments | « test/data/tokenizer/test4.test ('k') | test/data/tokenizer/unicodeCharsProblematic.test » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698