1[Exposed=Window]
2interface AbstractRange {
3 readonly attribute Node startContainer;
4 readonly attribute unsigned long startOffset;
5 readonly attribute Node endContainer;
6 readonly attribute unsigned long endOffset;
7 readonly attribute boolean collapsed;
8};