instiki/vendor/plugins/HTML5lib/testdata/validator/html-xmlns-attribute.test
Jacques Distler ed68d975df Update to latest HTML5lib
Fix that Tokenizer bug for real this time.
2007-09-09 22:26:19 -05:00

23 lines
809 B
Plaintext
Executable file

{"tests": [
{"description": "valid html xmlns attribute",
"input": "<html xmlns=http://www.w3.org/1999/xhtml>",
"fail-if": "invalid-root-namespace"},
{"description": "invalid html xmlns attribute due to leading space",
"input": "<html xmlns=' http://www.w3.org/1999/xhtml'>",
"fail-unless": "invalid-root-namespace"},
{"description": "invalid html xmlns attribute due to trailing space",
"input": "<html xmlns='http://www.w3.org/1999/xhtml '>",
"fail-unless": "invalid-root-namespace"},
{"description": "invalid html xmlns attribute due to uppercase",
"input": "<html xmlns=HTTP://WWW.W3.ORG/1999/XHTML>",
"fail-unless": "invalid-root-namespace"},
{"description": "invalid xmlns attribute on non-html element",
"input": "<body xmlns=http://www.w3.org/1999/xhtml>",
"fail-unless": "unknown-attribute"}
]}