1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 10:57:35 +00:00

LibWeb: Implement Node.isEqualNode(Node? otherNode)

This commit is contained in:
Andreas Kling 2021-09-13 12:54:24 +02:00
parent a0528598b5
commit 449cbd5ecc
4 changed files with 87 additions and 0 deletions

View file

@ -26,6 +26,7 @@ interface Node : EventTarget {
[ImplementedAs=pre_remove] Node removeChild(Node child);
[ImplementedAs=clone_node_binding] Node cloneNode(optional boolean deep = false);
boolean contains(Node? other);
boolean isEqualNode(Node? otherNode);
boolean isSameNode(Node? otherNode);
const unsigned short ELEMENT_NODE = 1;