1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 15:37:46 +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

@ -6,6 +6,8 @@ interface Range {
readonly attribute boolean collapsed;
readonly attribute Node commonAncestorContainer;
readonly attribute Node startContainer;
readonly attribute unsigned long startOffset;
readonly attribute Node endContainer;