1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 10:37:45 +00:00

LibWeb: Implement stringifier for DOM Range :^)

This commit is contained in:
Andreas Kling 2022-03-21 16:29:19 +01:00
parent c8bdac8736
commit 394cd77467
3 changed files with 34 additions and 0 deletions

View file

@ -61,6 +61,8 @@ public:
ExceptionOr<bool> is_point_in_range(Node const&, u32 offset) const;
ExceptionOr<i16> compare_point(Node const&, u32 offset) const;
String to_string() const;
private:
explicit Range(Document&);