LibWeb: Implement Range.intersectsNode

This commit is contained in:
Luke Wilde 2022-01-31 19:10:12 +00:00 committed by Andreas Kling
commit 386ee5ab17
Notes: sideshowbarker 2024-07-17 18:23:22 +09:00
3 changed files with 31 additions and 0 deletions

View file

@ -57,6 +57,8 @@ public:
// Note: Its functionality (disabling a Range object) was removed, but the method itself is preserved for compatibility.
}
bool intersects_node(Node const&) const;
private:
explicit Range(Document&);