mirror of
https://github.com/servo/servo.git
synced 2025-08-03 04:30:10 +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;
|
||||
}
|
||||
|
||||
|
|
|
@ -1,5 +0,0 @@
|
|||
[Node-isEqualNode.html]
|
||||
type: testharness
|
||||
[documents should not be compared based on properties]
|
||||
expected: FAIL
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue