2022-01-30 20:37:42 -03:00
|
|
|
#import <DOM/Node.idl>
|
|
|
|
|
#import <DOM/AbstractRange.idl>
|
|
|
|
|
|
2024-10-14 06:55:51 -03:00
|
|
|
// https://dom.spec.whatwg.org/#dictdef-staticrangeinit
|
2022-01-30 20:37:42 -03:00
|
|
|
dictionary StaticRangeInit {
|
|
|
|
|
required Node startContainer;
|
|
|
|
|
required unsigned long startOffset;
|
|
|
|
|
required Node endContainer;
|
|
|
|
|
required unsigned long endOffset;
|
|
|
|
|
};
|
2024-10-14 06:55:51 -03:00
|
|
|
|
|
|
|
|
// https://dom.spec.whatwg.org/#staticrange
|
|
|
|
|
[Exposed=Window]
|
|
|
|
|
interface StaticRange : AbstractRange {
|
|
|
|
|
constructor(StaticRangeInit init);
|
|
|
|
|
};
|