mirror of
https://github.com/RGBCube/serenity
synced 2025-05-15 01:44:58 +00:00
15 lines
365 B
Text
15 lines
365 B
Text
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();
|
|
|
|
};
|