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

LibWeb: Implement Range.isPointInRange

This commit is contained in:
Luke Wilde 2022-02-01 18:45:34 +00:00 committed by Andreas Kling
parent 386ee5ab17
commit 62b76e0658
3 changed files with 28 additions and 0 deletions

View file

@ -27,6 +27,8 @@ interface Range : AbstractRange {
Range cloneRange();
undefined detach();
boolean isPointInRange(Node node, unsigned long offset);
boolean intersectsNode(Node node);
};