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

Unified Diff: third_party/WebKit/Source/core/events/InputEvent.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 | « no previous file | third_party/WebKit/Source/core/events/InputEventInit.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 4fc702ca4b184facb7eb3ec62910834ef261f671..6db312aeb1f4cf358da170a67fc4d35b0d607774 100644
--- a/third_party/WebKit/Source/core/events/InputEvent.idl
+++ b/third_party/WebKit/Source/core/events/InputEvent.idl
@@ -2,17 +2,18 @@
// 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
-
-// Input Events
-// https://w3c.github.io/input-events/#interface-InputEvent
[
Constructor(DOMString type, optional InputEventInit eventInitDict),
RuntimeEnabled=InputEvent,
] interface InputEvent : UIEvent {
- readonly attribute DOMString inputType;
+ // UI Events
+ // https://w3c.github.io/uievents/#idl-inputevent
readonly attribute DOMString? data;
- readonly attribute DataTransfer? dataTransfer;
readonly attribute boolean isComposing;
+
+ // Input Events Level 1
+ // https://www.w3.org/TR/2017/WD-input-events-1-20170321/#interface-InputEvent
+ readonly attribute DOMString inputType;
+ readonly attribute DataTransfer? dataTransfer;
sequence<StaticRange> getTargetRanges();
};
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/events/InputEventInit.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698