diff options
author | Markus Unterwaditzer <markus-honeypot@unterwaditzer.net> | 2021-11-26 13:17:39 +0100 |
---|---|---|
committer | Markus Unterwaditzer <markus-honeypot@unterwaditzer.net> | 2021-11-26 13:17:39 +0100 |
commit | e1cdb4a6ac40aa562605990d58425978a5dc295b (patch) | |
tree | 48ee360700f05443364b95bbaedcfdb809ada6ea /tests/html5lib-tests/tokenizer/unicodeCharsProblematic.test | |
parent | bb1e11cc9421c3096d82c4fceb74bb8f0aa82201 (diff) |
remove html5lib-tests
Diffstat (limited to 'tests/html5lib-tests/tokenizer/unicodeCharsProblematic.test')
-rw-r--r-- | tests/html5lib-tests/tokenizer/unicodeCharsProblematic.test | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/tests/html5lib-tests/tokenizer/unicodeCharsProblematic.test b/tests/html5lib-tests/tokenizer/unicodeCharsProblematic.test deleted file mode 100644 index 3ddb96c..0000000 --- a/tests/html5lib-tests/tokenizer/unicodeCharsProblematic.test +++ /dev/null @@ -1,41 +0,0 @@ -{"tests" : [ -{"description": "Invalid Unicode character U+DFFF", -"doubleEscaped":true, -"input": "\\uDFFF", -"output":[["Character", "\\uDFFF"]], -"errors":[ - { "code": "surrogate-in-input-stream", "line": 1, "col": 1 } -]}, - -{"description": "Invalid Unicode character U+D800", -"doubleEscaped":true, -"input": "\\uD800", -"output":[["Character", "\\uD800"]], -"errors":[ - { "code": "surrogate-in-input-stream", "line": 1, "col": 1 } -]}, - -{"description": "Invalid Unicode character U+DFFF with valid preceding character", -"doubleEscaped":true, -"input": "a\\uDFFF", -"output":[["Character", "a\\uDFFF"]], -"errors":[ - { "code": "surrogate-in-input-stream", "line": 1, "col": 2 } -]}, - -{"description": "Invalid Unicode character U+D800 with valid following character", -"doubleEscaped":true, -"input": "\\uD800a", -"output":[["Character", "\\uD800a"]], -"errors":[ - { "code": "surrogate-in-input-stream", "line": 1, "col": 1 } -]}, - -{"description":"CR followed by U+0000", -"input":"\r\u0000", -"output":[["Character", "\n\u0000"]], -"errors":[ - { "code": "unexpected-null-character", "line": 2, "col": 1 } -]} -] -}
\ No newline at end of file |