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;
|
|
|
|
|
};
|