mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-06 13:11:15 -07:00
20 lines
442 B
Text
20 lines
442 B
Text
{"xmlViolationTests": [
|
|
|
|
{"description":"Non-XML character",
|
|
"input":"a\uFFFFb",
|
|
"output":[["Character","a\uFFFDb"]]},
|
|
|
|
{"description":"Non-XML space",
|
|
"input":"a\u000Cb",
|
|
"output":[["Character","a b"]]},
|
|
|
|
{"description":"Double hyphen in comment",
|
|
"input":"<!-- foo -- bar -->",
|
|
"output":[["Comment"," foo - - bar "]]},
|
|
|
|
{"description":"FF between attributes",
|
|
"input":"<a b=''\u000Cc=''>",
|
|
"output":[["StartTag","a",{"b":"","c":""}]]}
|
|
]}
|
|
|
|
|