mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-08 16:12:23 +02:00
10 lines
328 B
Plaintext
10 lines
328 B
Plaintext
// https://dom.spec.whatwg.org/#interface-abstractrange
|
|
[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;
|
|
};
|