mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 11:48:10 +00:00

Range's member variables are stored in AbstractRange as per the spec, as they are also shared with StaticRange.
16 lines
323 B
Text
16 lines
323 B
Text
#import <DOM/Node.idl>
|
|
#import <DOM/AbstractRange.idl>
|
|
|
|
[Exposed=Window]
|
|
interface Range : AbstractRange {
|
|
|
|
constructor();
|
|
|
|
readonly attribute Node commonAncestorContainer;
|
|
|
|
undefined setStart(Node node, unsigned long offset);
|
|
undefined setEnd(Node node, unsigned long offset);
|
|
|
|
Range cloneRange();
|
|
|
|
};
|