Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 | 1 |
| 2 class MouseEvent extends UIEvent native "MouseEvent" { | 2 class MouseEvent extends UIEvent native "*MouseEvent" { |
| 3 | 3 |
| 4 bool altKey; | 4 bool altKey; |
| 5 | 5 |
| 6 int button; | 6 int button; |
| 7 | 7 |
| 8 int clientX; | 8 int clientX; |
| 9 | 9 |
| 10 int clientY; | 10 int clientY; |
| 11 | 11 |
| 12 bool ctrlKey; | 12 bool ctrlKey; |
| (...skipping 17 matching lines...) Expand all Loading... | |
| 30 bool shiftKey; | 30 bool shiftKey; |
| 31 | 31 |
| 32 Node toElement; | 32 Node toElement; |
| 33 | 33 |
| 34 int x; | 34 int x; |
| 35 | 35 |
| 36 int y; | 36 int y; |
| 37 | 37 |
| 38 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; | 38 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; |
| 39 } | 39 } |
| OLD | NEW |