fix Node-isEqualNode.html test failure

This commit is contained in:
Prabhjyot Singh Sodhi 2016-02-16 00:24:35 +05:30
parent 87c6889f44
commit ae80b9bcf0
2 changed files with 1 additions and 6 deletions

View file

@ -2134,7 +2134,7 @@ impl NodeMethods for Node {
}
fn is_equal_node(this: &Node, node: &Node) -> bool {
// Step 2.
if this.type_id() != node.type_id() {
if this.NodeType() != node.NodeType() {
return false;
}