blob: 0b29d41450e96043d3c6f63c3e0ac6f2c19333dd (
plain)
1
2
3
4
5
6
7
8
|
[Exposed=Window]
interface AbstractRange {
readonly attribute Node startContainer;
readonly attribute unsigned long startOffset;
readonly attribute Node endContainer;
readonly attribute unsigned long endOffset;
readonly attribute boolean collapsed;
};
|