AbstractRange.idl 352 B

1234567891011
  1. #import <DOM/Node.idl>
  2. // https://dom.spec.whatwg.org/#interface-abstractrange
  3. [Exposed=Window]
  4. interface AbstractRange {
  5. readonly attribute Node startContainer;
  6. readonly attribute unsigned long startOffset;
  7. readonly attribute Node endContainer;
  8. readonly attribute unsigned long endOffset;
  9. readonly attribute boolean collapsed;
  10. };