mirror of
https://github.com/servo/servo.git
synced 2025-08-05 21:50:18 +01:00
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:
commit
3ef0bb4b37
2 changed files with 1 additions and 6 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue