Summary

Harness status: OK

Found 4 tests

Details

ResultTest NameMessage
PassAttrs are subclasses of Nodes
Asserts run
Pass
assert_true(true, "attribute instances are instances of Node")
    at Test.<anonymous> ( /dom/attributes-are-nodes.html:15:3)
Pass
assert_true(true, "attribute instances are instances of Node")
    at Test.<anonymous> ( /dom/attributes-are-nodes.html:16:3)
PassappendChild with an attribute as the child should fail
Asserts run
Pass
assert_throws_dom("HierarchyRequestError", function "() => {     parent.appendChild(attribute);   }")
    at Test.<anonymous> ( /dom/attributes-are-nodes.html:25:3)
PassreplaceChild with an attribute as the child should fail
Asserts run
Pass
assert_throws_dom("HierarchyRequestError", function "() => {     parent.replaceChild(attribute, parent.firstChild);   }")
    at Test.<anonymous> ( /dom/attributes-are-nodes.html:37:3)
PassinsertBefore with an attribute as the child should fail
Asserts run
Pass
assert_throws_dom("HierarchyRequestError", function "() => {     parent.insertBefore(attribute, parent.firstChild);   }")
    at Test.<anonymous> ( /dom/attributes-are-nodes.html:49:3)