Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 | |
| 2 class KeyboardEvent extends UIEvent native "KeyboardEvent" { | |
| 3 | |
| 4 bool altGraphKey; | |
| 5 | |
| 6 bool altKey; | |
| 7 | |
| 8 bool ctrlKey; | |
| 9 | |
| 10 String keyIdentifier; | |
| 11 | |
| 12 int keyLocation; | |
| 13 | |
| 14 bool metaKey; | |
| 15 | |
| 16 bool shiftKey; | |
| 17 | |
| 18 bool getModifierState(String keyIdentifierArg) native; | |
| 19 | |
| 20 void initKeyboardEvent(String type, bool canBubble, bool cancelable, DOMWindow view, String keyIdentifier, int keyLocation, bool ctrlKey, bool altKey, bool sh iftKey, bool metaKey, bool altGraphKey) native; | |
| 21 } | |
| OLD | NEW |