mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-09 01:29:43 +00:00
8 lines
291 B
Text
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;
|
|
};
|