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

Unified Diff: third_party/WebKit/Source/core/events/InputEvent.idl

Issue 1965543002: [InputEvent] Support |sequence<Range> getRanges()| in 'beforeinput' (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Don't use |std::unique_ptr<>| with |HeapVector| Created 4 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/events/InputEvent.idl
diff --git a/third_party/WebKit/Source/core/events/InputEvent.idl b/third_party/WebKit/Source/core/events/InputEvent.idl
index ce907c7da35e8500a316002e21782e3f1c6a94fc..872c781a9eb9eb7da16f0a60bc08538ab469a8fe 100644
--- a/third_party/WebKit/Source/core/events/InputEvent.idl
+++ b/third_party/WebKit/Source/core/events/InputEvent.idl
@@ -11,5 +11,6 @@
readonly attribute DOMString inputType;
readonly attribute DOMString data;
readonly attribute boolean isComposing;
- // TODO(chongz): Add 'targetRanges'
+ // TODO(chongz): Return StaticRange.
+ sequence<Range> getRanges();
sof 2016/05/31 18:34:24 Web platform API-atypical for this to be "getRange
dtapuska 2016/05/31 18:37:19 This is done on purpose. This is intended to retur
chongz 2016/05/31 18:41:42 Thanks for the question! Please see dtapuska@'s c
};

Powered by Google App Engine
This is Rietveld 408576698