Chromium Code Reviews| 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 |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..cc1d595bf9e82fa16dcde23b0ecbfbe72ae71f7f |
| --- /dev/null |
| +++ b/third_party/WebKit/Source/core/events/InputEvent.idl |
| @@ -0,0 +1,12 @@ |
| +// Copyright 2016 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +// https://w3c.github.io/editing/input-events.html |
| + |
| +[ |
| + Constructor(DOMString type, optional InputEventInit eventInitDict), |
| + RuntimeEnabled=InputEvent, |
| +] interface InputEvent : UIEvent { |
| + // TODO(chongz): Add 'inputType', 'data', 'isComposing' and 'targetRanges' |
|
chongz
2016/02/09 15:35:59
Firefox has 'isComposing' (https://developer.mozil
dtapuska
2016/02/09 15:49:12
sgtm
|
| +}; |