LibWeb: Implement Node.isEqualNode(Node? otherNode)

This commit is contained in:
Andreas Kling 2021-09-13 12:54:24 +02:00
commit 449cbd5ecc
Notes: sideshowbarker 2024-07-18 04:03:12 +09:00
4 changed files with 87 additions and 0 deletions

View file

@ -187,6 +187,7 @@ public:
void string_replace_all(String const&);
bool is_same_node(Node const*) const;
bool is_equal_node(Node const*) const;
protected:
Node(Document&, NodeType);