summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/core/dom/static_range.idl
blob: 71005a55ffac7abb5ed879fbb81e853e1c2343d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

// https://w3c.github.io/staticrange/#interface-staticrange

interface StaticRange {
    readonly attribute Node startContainer;
    readonly attribute unsigned long startOffset;
    readonly attribute Node endContainer;
    readonly attribute unsigned long endOffset;
    readonly attribute boolean collapsed;
};