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

LibWeb: Expose Range.collapsed to JavaScript

This commit is contained in:
Andreas Kling 2022-02-25 20:20:31 +01:00
parent f2663f477f
commit aec0e54f73

View file

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