Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(160)

Side by Side Diff: client/html/generated/html/frog/MouseEvent.dart

Issue 9537001: Generate dart:html bindings for Dartium as well as Frog. All unittests now pass (or are disabled fo… (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698