mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-01 12:07:14 +02:00
9 lines
291 B
Plaintext
9 lines
291 B
Plaintext
[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;
|
|
};
|