OLD | NEW |
---|---|
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // https://w3c.github.io/uievents/#idl-def-UIEventInit | 5 // https://w3c.github.io/uievents/#idl-def-UIEventInit |
6 | 6 |
7 dictionary UIEventInit : EventInit { | 7 dictionary UIEventInit : EventInit { |
8 Window? view = null; | 8 Window? view = null; |
9 long detail = 0; | 9 long detail = 0; |
10 unsigned long which = 0; | |
dtapuska
2017/05/09 21:22:37
Shouldn't the constructor of the UIEvent now store
use mustaq_at_chromium.org
2017/05/10 17:48:35
The problem is that KeyboardEvent.which() ultimate
use mustaq_at_chromium.org
2017/05/11 20:47:46
As discussed offline, I will bring back the UIEven
| |
10 InputDeviceCapabilities? sourceCapabilities = null; | 11 InputDeviceCapabilities? sourceCapabilities = null; |
11 }; | 12 }; |
OLD | NEW |