| OLD | NEW |
| (Empty) |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | |
| 2 // for details. All rights reserved. Use of this source code is governed by a | |
| 3 // BSD-style license that can be found in the LICENSE file. | |
| 4 | |
| 5 // WARNING: | |
| 6 // This file contains documentation that is merged into the real source. | |
| 7 // Do not make code changes here. | |
| 8 | |
| 9 /// @domName KeyboardEvent | |
| 10 interface KeyboardEvent extends UIEvent { | |
| 11 | |
| 12 /** @domName KeyboardEvent.altGraphKey */ | |
| 13 final bool altGraphKey; | |
| 14 | |
| 15 /** @domName KeyboardEvent.altKey */ | |
| 16 final bool altKey; | |
| 17 | |
| 18 /** @domName KeyboardEvent.ctrlKey */ | |
| 19 final bool ctrlKey; | |
| 20 | |
| 21 /** @domName KeyboardEvent.keyIdentifier */ | |
| 22 final String keyIdentifier; | |
| 23 | |
| 24 /** @domName KeyboardEvent.keyLocation */ | |
| 25 final int keyLocation; | |
| 26 | |
| 27 /** @domName KeyboardEvent.metaKey */ | |
| 28 final bool metaKey; | |
| 29 | |
| 30 /** @domName KeyboardEvent.shiftKey */ | |
| 31 final bool shiftKey; | |
| 32 | |
| 33 /** @domName KeyboardEvent.initKeyboardEvent */ | |
| 34 void initKeyboardEvent(String type, bool canBubble, bool cancelable, Window vi
ew, String keyIdentifier, int keyLocation, bool ctrlKey, bool altKey, bool shift
Key, bool metaKey, bool altGraphKey); | |
| 35 } | |
| OLD | NEW |