mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
12 lines
352 B
Plaintext
12 lines
352 B
Plaintext
#import <DOM/Node.idl>
|
|
|
|
// 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;
|
|
};
|