diff options
Diffstat (limited to 'components/script')
-rw-r--r-- | components/script/dom/node.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/node.rs b/components/script/dom/node.rs index 5e02dc3d0e6..c42635a3762 100644 --- a/components/script/dom/node.rs +++ b/components/script/dom/node.rs @@ -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; } |