mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-02-01 13:25:58 +00:00
18 lines
389 B
Plaintext
18 lines
389 B
Plaintext
#import <DOM/Node.idl>
|
|
|
|
interface Range {
|
|
|
|
constructor();
|
|
|
|
readonly attribute Node startContainer;
|
|
readonly attribute unsigned long startOffset;
|
|
readonly attribute Node endContainer;
|
|
readonly attribute unsigned long endOffset;
|
|
|
|
undefined setStart(Node node, unsigned long offset);
|
|
undefined setEnd(Node node, unsigned long offset);
|
|
|
|
Range cloneRange();
|
|
|
|
};
|