mirror of
https://github.com/servo/servo.git
synced 2025-08-04 05:00:08 +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 {
|
fn is_equal_node(this: &Node, node: &Node) -> bool {
|
||||||
// Step 2.
|
// Step 2.
|
||||||
if this.type_id() != node.type_id() {
|
if this.NodeType() != node.NodeType() {
|
||||||
return false;
|
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