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

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

Issue 2795783002: [InputEvent] Update spec links for InputEvent(Init).idl (Closed)
Patch Set: foolip@'s review: Put spec inside interface Created 3 years, 8 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
« no previous file with comments | « third_party/WebKit/Source/core/events/InputEvent.idl ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/events/InputEventInit.idl
diff --git a/third_party/WebKit/Source/core/events/InputEventInit.idl b/third_party/WebKit/Source/core/events/InputEventInit.idl
index bdc363150c200baa8ac9456d98061ec8fb3681c2..81d0375cad9dfc08f0fd2b6e519dd3268d269440 100644
--- a/third_party/WebKit/Source/core/events/InputEventInit.idl
+++ b/third_party/WebKit/Source/core/events/InputEventInit.idl
@@ -2,14 +2,15 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-// https://w3c.github.io/uievents/#interface-inputevent
-
-// InputEventInit
-// https://w3c.github.io/input-events/#interface-InputEventInit
dictionary InputEventInit : UIEventInit {
- DOMString inputType = "";
+ // UI Events
+ // https://w3c.github.io/uievents/#idl-inputeventinit
DOMString? data;
- DataTransfer? dataTransfer;
boolean isComposing = false;
+
+ // Input Events Level 1
+ // https://www.w3.org/TR/2017/WD-input-events-1-20170321/#interface-InputEvent
+ DOMString inputType = "";
+ DataTransfer? dataTransfer;
sequence<StaticRange> targetRanges = [];
};
« no previous file with comments | « third_party/WebKit/Source/core/events/InputEvent.idl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698