mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-19 15:43:20 +00:00
14 lines
345 B
Text
14 lines
345 B
Text
![]() |
interface Range {
|
||
|
|
||
|
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();
|
||
|
|
||
|
};
|