Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(423)

Side by Side Diff: third_party/WebKit/Source/core/dom/StaticRange.idl

Issue 2022863002: [InputEvent] Introduce |StaticRange| and use in |InputEvent::getRanges()| (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Introduce |StaticRange| and add tests Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 // https://discourse.wicg.io/t/proposal-staticrange-to-be-used-instead-of-range- for-new-apis/1472
6
7 [
8 Constructor,
9 Exposed=Window,
10 RuntimeEnabled=InputEvent,
11 ] interface StaticRange {
12 attribute Node startContainer;
13 attribute long startOffset;
14 attribute Node endContainer;
15 attribute long endOffset;
16 readonly attribute boolean collapsed;
17
18 void setStart(Node node, long offset);
19 void setEnd(Node node, long offset);
20
21 [NewObject, RaisesException, CallWith=ScriptState] Range toRange();
22 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698