mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
16 lines
432 B
Text
16 lines
432 B
Text
#import <DOM/Node.idl>
|
|
#import <DOM/AbstractRange.idl>
|
|
|
|
// https://dom.spec.whatwg.org/#dictdef-staticrangeinit
|
|
dictionary StaticRangeInit {
|
|
required Node startContainer;
|
|
required unsigned long startOffset;
|
|
required Node endContainer;
|
|
required unsigned long endOffset;
|
|
};
|
|
|
|
// https://dom.spec.whatwg.org/#staticrange
|
|
[Exposed=Window]
|
|
interface StaticRange : AbstractRange {
|
|
constructor(StaticRangeInit init);
|
|
};
|