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

Side by Side Diff: test/data/tokenizer/test2.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/test1.test ('k') | test/data/tokenizer/test3.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":"DOCTYPE without name", 3 {"description":"DOCTYPE without name",
4 "input":"<!DOCTYPE>", 4 "input":"<!DOCTYPE>",
5 "output":["ParseError", "ParseError", ["DOCTYPE", "", null, null, false]]}, 5 "output":["ParseError", "ParseError", ["DOCTYPE", "", null, null, false]]},
6 6
7 {"description":"DOCTYPE without space before name", 7 {"description":"DOCTYPE without space before name",
8 "input":"<!DOCTYPEhtml>", 8 "input":"<!DOCTYPEhtml>",
9 "output":["ParseError", ["DOCTYPE", "html", null, null, true]]}, 9 "output":["ParseError", ["DOCTYPE", "html", null, null, true]]},
10 10
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after
170 170
171 {"description":"Empty end tag with following comment", 171 {"description":"Empty end tag with following comment",
172 "input":"a</><!--b-->c", 172 "input":"a</><!--b-->c",
173 "output":[["Character", "a"], "ParseError", ["Comment", "b"], ["Character", "c"] ]}, 173 "output":[["Character", "a"], "ParseError", ["Comment", "b"], ["Character", "c"] ]},
174 174
175 {"description":"Empty end tag with following end tag", 175 {"description":"Empty end tag with following end tag",
176 "input":"a</></b>c", 176 "input":"a</></b>c",
177 "output":[["Character", "a"], "ParseError", ["EndTag", "b"], ["Character", "c"]] } 177 "output":[["Character", "a"], "ParseError", ["EndTag", "b"], ["Character", "c"]] }
178 178
179 ]} 179 ]}
OLDNEW
« no previous file with comments | « test/data/tokenizer/test1.test ('k') | test/data/tokenizer/test3.test » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698