1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-18 04:55:08 +00:00
serenity/Userland/Libraries/LibWeb/DOM/AbstractRange.idl

8 lines
291 B
Text

[Exposed=Window, NoInstanceWrapper]
interface AbstractRange {
readonly attribute Node startContainer;
readonly attribute unsigned long startOffset;
readonly attribute Node endContainer;
readonly attribute unsigned long endOffset;
readonly attribute boolean collapsed;
};