2023-11-08 15:04:56 -03:00
|
|
|
#import <DOM/Node.idl>
|
|
|
|
|
|
2023-10-25 12:27:19 -03:00
|
|
|
// https://dom.spec.whatwg.org/#interface-abstractrange
|
2022-09-05 06:41:26 -03:00
|
|
|
[Exposed=Window]
|
2022-01-30 20:35:51 -03:00
|
|
|
interface AbstractRange {
|
|
|
|
|
readonly attribute Node startContainer;
|
|
|
|
|
readonly attribute unsigned long startOffset;
|
|
|
|
|
readonly attribute Node endContainer;
|
|
|
|
|
readonly attribute unsigned long endOffset;
|
|
|
|
|
readonly attribute boolean collapsed;
|
|
|
|
|
};
|