Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 | |
| 2 class MouseEvent extends UIEvent native "MouseEvent" { | |
| 3 | |
| 4 bool altKey; | |
| 5 | |
| 6 int button; | |
| 7 | |
| 8 int clientX; | |
| 9 | |
| 10 int clientY; | |
| 11 | |
| 12 bool ctrlKey; | |
| 13 | |
| 14 Node fromElement; | |
| 15 | |
| 16 bool metaKey; | |
| 17 | |
| 18 int offsetX; | |
| 19 | |
| 20 int offsetY; | |
| 21 | |
| 22 EventTarget relatedTarget; | |
| 23 | |
| 24 int screenX; | |
| 25 | |
| 26 int screenY; | |
| 27 | |
| 28 bool shiftKey; | |
| 29 | |
| 30 Node toElement; | |
| 31 | |
| 32 int x; | |
| 33 | |
| 34 int y; | |
| 35 | |
| 36 void initMouseEvent(String type, bool canBubble, bool cancelable, DOMWindow vi ew, int detail, int screenX, int screenY, int clientX, int clientY, bool ctrlKey , bool altKey, bool shiftKey, bool metaKey, int button, EventTarget relatedTarge t) native; | |
| 37 } | |
| OLD | NEW |