summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/DOM/AbstractRange.idl
blob: 78d7b4a921ece27c587a073ee03cf51141113fe2 (plain)
1
2
3
4
5
6
7
8
[Exposed=Window, NoInstanceWrapper]
interface AbstractRange {
    readonly attribute Node startContainer;
    readonly attribute unsigned long startOffset;
    readonly attribute Node endContainer;
    readonly attribute unsigned long endOffset;
    readonly attribute boolean collapsed;
};