Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 | |
| 2 class _MouseEventImpl extends _UIEventImpl implements MouseEvent native "*MouseE vent" { | |
| 3 | |
| 4 final bool altKey; | |
| 5 | |
| 6 final int button; | |
| 7 | |
| 8 final int clientX; | |
| 9 | |
| 10 final int clientY; | |
| 11 | |
| 12 final bool ctrlKey; | |
| 13 | |
| 14 final _ClipboardImpl dataTransfer; | |
| 15 | |
| 16 final _NodeImpl fromElement; | |
| 17 | |
| 18 final bool metaKey; | |
| 19 | |
| 20 final int offsetX; | |
| 21 | |
| 22 final int offsetY; | |
| 23 | |
| 24 _EventTargetImpl get relatedTarget() => _FixHtmlDocumentReference(_relatedTarg et); | |
| 25 | |
| 26 _EventTargetImpl get _relatedTarget() native "return this.relatedTarget;"; | |
| 27 | |
| 28 final int screenX; | |
| 29 | |
| 30 final int screenY; | |
| 31 | |
| 32 final bool shiftKey; | |
| 33 | |
| 34 final _NodeImpl toElement; | |
| 35 | |
| 36 final int x; | |
| 37 | |
| 38 final int y; | |
| 39 | |
| 40 void _initMouseEvent(String type, bool canBubble, bool cancelable, _WindowImpl view, int detail, int screenX, int screenY, int clientX, int clientY, bool ctrl Key, bool altKey, bool shiftKey, bool metaKey, int button, _EventTargetImpl rela tedTarget) native "this.initMouseEvent(type, canBubble, cancelable, view, detail , screenX, screenY, clientX, clientY, ctrlKey, altKey, shiftKey, metaKey, button , relatedTarget);"; | |
| 41 } | |
| OLD | NEW |