Auto merge of #9648 - psdh:fixnodeiseual, r=Manishearth

fix Node-isEqualNode.html test failure

<!-- Reviewable:start -->
[<img src="https://reviewable.io/review_button.svg" height="40" alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/9648)
<!-- Reviewable:end -->
This commit is contained in:
bors-servo 2016-02-16 02:35:47 +05:30
commit 3ef0bb4b37
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;
}