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

Side by Side Diff: test/data/tokenizer/entities.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/domjs.test ('k') | test/data/tokenizer/escapeFlag.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": "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='&noti;'>", 4 "input":"<h a='&noti;'>",
5 "output": ["ParseError", ["StartTag", "h", {"a": "&noti;"}]]}, 5 "output": ["ParseError", ["StartTag", "h", {"a": "&noti;"}]]},
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
274 274
275 {"description": "Decimal numeric entity followed by hex character f.", 275 {"description": "Decimal numeric entity followed by hex character f.",
276 "input":"&#97f", 276 "input":"&#97f",
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":"&#97F", 280 "input":"&#97F",
281 "output": ["ParseError", ["Character", "aF"]]} 281 "output": ["ParseError", ["Character", "aF"]]}
282 282
283 ]} 283 ]}
OLDNEW
« no previous file with comments | « test/data/tokenizer/domjs.test ('k') | test/data/tokenizer/escapeFlag.test » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698