mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-02 22:30:31 +00:00
LibWeb: Implement Node.isEqualNode(Node? otherNode)
This commit is contained in:
parent
a0528598b5
commit
449cbd5ecc
Notes:
sideshowbarker
2024-07-18 04:03:12 +09:00
Author: https://github.com/awesomekling
Commit: 449cbd5ecc
4 changed files with 87 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue