Skip to content

Commit

Permalink
Merge pull request #2590 from yaycmyk/attr-nodeName
Browse files Browse the repository at this point in the history
Check for the existence of Attr.nodeName
  • Loading branch information
zcorpan committed Mar 1, 2016
2 parents 1da2731 + 2185fea commit da5128e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions dom/nodes/attributes.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ function attr_is(attr, v, ln, ns, p, n) {
assert_equals(attr.namespaceURI, ns)
assert_equals(attr.prefix, p)
assert_equals(attr.name, n)
assert_equals(attr.nodeName, n);
assert_equals(attr.specified, true)
}

Expand Down

0 comments on commit da5128e

Please sign in to comment.