Pass | tagName should upper-case for HTML elements in HTML documents. | Asserts runPass | assert_equals("I", "I")
at Test.<anonymous> ( /dom/nodes/Element-tagName.html:9:3) | Pass | assert_equals("I", "I")
at Test.<anonymous> ( /dom/nodes/Element-tagName.html:10:3) | Pass | assert_equals("X:B", "X:B")
at Test.<anonymous> ( /dom/nodes/Element-tagName.html:11:3) |
|
Pass | tagName should not upper-case for SVG elements in HTML documents. | Asserts runPass | assert_equals("svg", "svg")
at Test.<anonymous> ( /dom/nodes/Element-tagName.html:16:3) | Pass | assert_equals("SVG", "SVG")
at Test.<anonymous> ( /dom/nodes/Element-tagName.html:17:3) | Pass | assert_equals("s:svg", "s:svg")
at Test.<anonymous> ( /dom/nodes/Element-tagName.html:18:3) | Pass | assert_equals("s:SVG", "s:SVG")
at Test.<anonymous> ( /dom/nodes/Element-tagName.html:19:3) | Pass | assert_equals("textPath", "textPath")
at Test.<anonymous> ( /dom/nodes/Element-tagName.html:21:3) |
|
Pass | tagName should not upper-case for other non-HTML namespaces | Asserts runPass | assert_equals("mixedCase", "mixedCase")
at Test.<anonymous> ( /dom/nodes/Element-tagName.html:26:3) |
|
Pass | tagName should be updated when changing ownerDocument | Asserts runPass | assert_equals("div", "div", "tagName should be lowercase in XML")
at Test.<anonymous> ( /dom/nodes/Element-tagName.html:34:5) | Pass | assert_equals("DIV", "DIV", "tagName should be uppercase in HTML")
at Test.<anonymous> ( /dom/nodes/Element-tagName.html:36:5) |
|
Pass | tagName should be updated when changing ownerDocument (createDocument without prefix) | Asserts runPass | assert_equals("div", "div", "tagName should be lowercase in XML")
at Test.<anonymous> ( /dom/nodes/Element-tagName.html:44:3) | Pass | assert_equals("DIV", "DIV", "tagName should be uppercase in HTML")
at Test.<anonymous> ( /dom/nodes/Element-tagName.html:46:3) |
|
Pass | tagName should be updated when changing ownerDocument (createDocument with prefix) | Asserts runPass | assert_equals("foo:div", "foo:div", "tagName should be lowercase in XML")
at Test.<anonymous> ( /dom/nodes/Element-tagName.html:53:3) | Pass | assert_equals("FOO:DIV", "FOO:DIV", "tagName should be uppercase in HTML")
at Test.<anonymous> ( /dom/nodes/Element-tagName.html:55:3) |
|