mirror of
https://github.com/servo/servo.git
synced 2025-08-01 11:40:30 +01:00
fix Node-isEqualNode.html test failure
This commit is contained in:
parent
87c6889f44
commit
ae80b9bcf0
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