summaryrefslogtreecommitdiff
path: root/test/data/validator/html-xmlns-attribute.test
blob: 2ebd19eba88658f30a80c7836598cbff3eef88ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{"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"}

]}