mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
a2acda5669
Range's member variables are stored in AbstractRange as per the spec, as they are also shared with StaticRange.
9 lines
272 B
Plaintext
9 lines
272 B
Plaintext
[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;
|
|
};
|