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

LibWeb: Implement Range.intersectsNode

This commit is contained in:
Luke Wilde 2022-01-31 19:10:12 +00:00 committed by Andreas Kling
parent 4c08757ff9
commit 386ee5ab17
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&);