ladybird/Userland/Libraries/LibWeb/DOM/AbstractRange.idl

9 lines
272 B
Text
Raw Normal View History

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