1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 02:37:42 +00:00

LibWeb: Implement Range.commonAncestorContainer

This commit is contained in:
Andreas Kling 2022-02-25 20:45:03 +01:00
parent aec0e54f73
commit c25d653c31
3 changed files with 20 additions and 0 deletions

View file

@ -55,6 +55,8 @@ public:
NonnullRefPtr<Range> normalized() const;
NonnullRefPtr<Range> clone_range() const;
NonnullRefPtr<Node> common_ancestor_container() const;
private:
explicit Range(Document&);