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

Unified Diff: tests/data/tokenizer/unicodeCharsProblematic.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/unicodeChars.test ('k') | tests/data/tokenizer/xmlViolation.test » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/data/tokenizer/unicodeCharsProblematic.test
diff --git a/tests/data/tokenizer/unicodeCharsProblematic.test b/tests/data/tokenizer/unicodeCharsProblematic.test
deleted file mode 100644
index cf2fbe61ab3a3145ca570daa04900fdbb5b65de9..0000000000000000000000000000000000000000
--- a/tests/data/tokenizer/unicodeCharsProblematic.test
+++ /dev/null
@@ -1,27 +0,0 @@
-{"tests" : [
-{"description": "Invalid Unicode character U+DFFF",
-"doubleEscaped":true,
-"input": "\\uDFFF",
-"output":["ParseError", ["Character", "\\uFFFD"]]},
-
-{"description": "Invalid Unicode character U+D800",
-"doubleEscaped":true,
-"input": "\\uD800",
-"output":["ParseError", ["Character", "\\uFFFD"]]},
-
-{"description": "Invalid Unicode character U+DFFF with valid preceding character",
-"doubleEscaped":true,
-"input": "a\\uDFFF",
-"output":["ParseError", ["Character", "a\\uFFFD"]]},
-
-{"description": "Invalid Unicode character U+D800 with valid following character",
-"doubleEscaped":true,
-"input": "\\uD800a",
-"output":["ParseError", ["Character", "\\uFFFDa"]]},
-
-{"description":"CR followed by U+0000",
-"input":"\r\u0000",
-"output":[["Character", "\n"], "ParseError", ["Character", "\u0000"]],
-"ignoreErrorOrder":true}
-]
-}
« no previous file with comments | « tests/data/tokenizer/unicodeChars.test ('k') | tests/data/tokenizer/xmlViolation.test » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698