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

Unified Diff: tests/data/tokenizer/domjs.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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tests/data/tokenizer/contentModelFlags.test ('k') | tests/data/tokenizer/entities.test » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/data/tokenizer/domjs.test
diff --git a/tests/data/tokenizer/domjs.test b/tests/data/tokenizer/domjs.test
deleted file mode 100644
index 74771e2306e0b6325e4ced64399e14d396496f70..0000000000000000000000000000000000000000
--- a/tests/data/tokenizer/domjs.test
+++ /dev/null
@@ -1,90 +0,0 @@
-{
- "tests": [
- {
- "description":"CR in bogus comment state",
- "input":"<?\u000d",
- "output":["ParseError", ["Comment", "?\u000a"]]
- },
- {
- "description":"CRLF in bogus comment state",
- "input":"<?\u000d\u000a",
- "output":["ParseError", ["Comment", "?\u000a"]]
- },
- {
- "description":"NUL in RCDATA and RAWTEXT",
- "doubleEscaped":true,
- "initialStates":["RCDATA state", "RAWTEXT state"],
- "input":"\\u0000",
- "output":["ParseError", ["Character", "\\uFFFD"]]
- },
- {
- "description":"skip first BOM but not later ones",
- "input":"\uFEFFfoo\uFEFFbar",
- "output":[["Character", "foo\uFEFFbar"]]
- },
- {
- "description":"Non BMP-charref in in RCDATA",
- "initialStates":["RCDATA state"],
- "input":"&NotEqualTilde;",
- "output":[["Character", "\u2242\u0338"]]
- },
- {
- "description":"Bad charref in in RCDATA",
- "initialStates":["RCDATA state"],
- "input":"&NotEqualTild;",
- "output":["ParseError", ["Character", "&NotEqualTild;"]]
- },
- {
- "description":"lowercase endtags in RCDATA and RAWTEXT",
- "initialStates":["RCDATA state", "RAWTEXT state"],
- "lastStartTag":"xmp",
- "input":"</XMP>",
- "output":[["EndTag","xmp"]]
- },
- {
- "description":"bad endtag in RCDATA and RAWTEXT",
- "initialStates":["RCDATA state", "RAWTEXT state"],
- "lastStartTag":"xmp",
- "input":"</ XMP>",
- "output":[["Character","</ XMP>"]]
- },
- {
- "description":"bad endtag in RCDATA and RAWTEXT",
- "initialStates":["RCDATA state", "RAWTEXT state"],
- "lastStartTag":"xmp",
- "input":"</xm>",
- "output":[["Character","</xm>"]]
- },
- {
- "description":"bad endtag in RCDATA and RAWTEXT",
- "initialStates":["RCDATA state", "RAWTEXT state"],
- "lastStartTag":"xmp",
- "input":"</xm ",
- "output":[["Character","</xm "]]
- },
- {
- "description":"bad endtag in RCDATA and RAWTEXT",
- "initialStates":["RCDATA state", "RAWTEXT state"],
- "lastStartTag":"xmp",
- "input":"</xm/",
- "output":[["Character","</xm/"]]
- },
- {
- "description":"Non BMP-charref in attribute",
- "input":"<p id=\"&NotEqualTilde;\">",
- "output":[["StartTag", "p", {"id":"\u2242\u0338"}]]
- },
- {
- "description":"--!NUL in comment ",
- "doubleEscaped":true,
- "input":"<!----!\\u0000-->",
- "output":["ParseError", ["Comment", "--!\\uFFFD"]]
- },
- {
- "description":"space EOF after doctype ",
- "input":"<!DOCTYPE html ",
- "output":["ParseError", ["DOCTYPE", "html", null, null , false]]
- }
-
- ]
-}
« no previous file with comments | « tests/data/tokenizer/contentModelFlags.test ('k') | tests/data/tokenizer/entities.test » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698