mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-11-08 09:11:01 +00:00
9 lines
272 B
Text
9 lines
272 B
Text
|
|
[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;
|
||
|
|
};
|