Summary

Harness status: OK

Found 2 tests

Details

ResultTest NameMessage
Passelement.hasAttributes() must return false when the element does not have attribute.
Asserts run
Pass
assert_equals(false, false, "hasAttributes() on empty element must return false.")
    at Test.<anonymous> ( /dom/nodes/Element-hasAttributes.html:15:5)
Pass
assert_equals(false, false, "hasAttributes() on dynamically created empty element must return false.")
    at Test.<anonymous> ( /dom/nodes/Element-hasAttributes.html:18:5)
Passelement.hasAttributes() must return true when the element has attribute.
Asserts run
Pass
assert_equals(true, true, "hasAttributes() on element with id attribute must return true.")
    at Test.<anonymous> ( /dom/nodes/Element-hasAttributes.html:24:5)
Pass
assert_equals(true, true, "hasAttributes() on dynamically created element with class attribute must return true.")
    at Test.<anonymous> ( /dom/nodes/Element-hasAttributes.html:28:5)
Pass
assert_equals(true, true, "hasAttributes() on element with custom attribute must return true.")
    at Test.<anonymous> ( /dom/nodes/Element-hasAttributes.html:31:5)
Pass
assert_equals(true, true, "hasAttributes() on dynamically created element with custom attribute must return true.")
    at Test.<anonymous> ( /dom/nodes/Element-hasAttributes.html:35:5)