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

Side by Side Diff: test/data/tokenizer/test1.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/pendingSpecChanges.test ('k') | test/data/tokenizer/test2.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":"Correct Doctype lowercase", 3 {"description":"Correct Doctype lowercase",
4 "input":"<!DOCTYPE html>", 4 "input":"<!DOCTYPE html>",
5 "output":[["DOCTYPE", "html", null, null, true]]}, 5 "output":[["DOCTYPE", "html", null, null, true]]},
6 6
7 {"description":"Correct Doctype uppercase", 7 {"description":"Correct Doctype uppercase",
8 "input":"<!DOCTYPE HTML>", 8 "input":"<!DOCTYPE HTML>",
9 "output":[["DOCTYPE", "html", null, null, true]]}, 9 "output":[["DOCTYPE", "html", null, null, true]]},
10 10
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after
187 187
188 {"description":"plaintext element", 188 {"description":"plaintext element",
189 "input":"<plaintext>foobar", 189 "input":"<plaintext>foobar",
190 "output":[["StartTag","plaintext",{}], ["Character","foobar"]]}, 190 "output":[["StartTag","plaintext",{}], ["Character","foobar"]]},
191 191
192 {"description":"Open angled bracket in unquoted attribute value state", 192 {"description":"Open angled bracket in unquoted attribute value state",
193 "input":"<a a=f<>", 193 "input":"<a a=f<>",
194 "output":["ParseError", ["StartTag", "a", {"a":"f<"}]]} 194 "output":["ParseError", ["StartTag", "a", {"a":"f<"}]]}
195 195
196 ]} 196 ]}
OLDNEW
« no previous file with comments | « test/data/tokenizer/pendingSpecChanges.test ('k') | test/data/tokenizer/test2.test » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698