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

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: Rebase 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 ConstructorCallWith=Document,
10 Exposed=Window,
11 RuntimeEnabled=InputEvent,
12 ] interface StaticRange {
13 attribute Node startContainer;
14 attribute long startOffset;
15 attribute Node endContainer;
16 attribute long endOffset;
17 readonly attribute boolean collapsed;
18
19 void setStart(Node node, long offset);
20 void setEnd(Node node, long offset);
21
22 [NewObject, RaisesException] Range toRange();
23 };
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/dom/StaticRange.cpp ('k') | third_party/WebKit/Source/core/dom/StaticRangeTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698