blob: 5197e166cb45e9eb816a6ed5b2c826bd1a0aa0df [file] [log] [blame]
// GENERATED CONTENT - DO NOT EDIT
// Content of this file was automatically extracted from the Static Range spec.
// See https://w3c.github.io/staticrange/
dictionary StaticRangeInit {
required Node startContainer;
required unsigned long startOffset;
required Node endContainer;
required unsigned long endOffset;
};
[Constructor(StaticRangeInit initDict),
Exposed=Window]
interface StaticRange {
attribute Node startContainer;
attribute unsigned long startOffset;
attribute Node endContainer;
attribute unsigned long endOffset;
readonly attribute boolean collapsed;
[NewObject] Range toRange();
};