| OLD | NEW |
| 1 | 1 |
| 2 class Event native "*Event" { | 2 class Event native "*Event" { |
| 3 | 3 |
| 4 static final int AT_TARGET = 2; |
| 5 |
| 6 static final int BLUR = 8192; |
| 7 |
| 8 static final int BUBBLING_PHASE = 3; |
| 9 |
| 10 static final int CAPTURING_PHASE = 1; |
| 11 |
| 12 static final int CHANGE = 32768; |
| 13 |
| 14 static final int CLICK = 64; |
| 15 |
| 16 static final int DBLCLICK = 128; |
| 17 |
| 18 static final int DRAGDROP = 2048; |
| 19 |
| 20 static final int FOCUS = 4096; |
| 21 |
| 22 static final int KEYDOWN = 256; |
| 23 |
| 24 static final int KEYPRESS = 1024; |
| 25 |
| 26 static final int KEYUP = 512; |
| 27 |
| 28 static final int MOUSEDOWN = 1; |
| 29 |
| 30 static final int MOUSEDRAG = 32; |
| 31 |
| 32 static final int MOUSEMOVE = 16; |
| 33 |
| 34 static final int MOUSEOUT = 8; |
| 35 |
| 36 static final int MOUSEOVER = 4; |
| 37 |
| 38 static final int MOUSEUP = 2; |
| 39 |
| 40 static final int SELECT = 16384; |
| 41 |
| 4 bool bubbles; | 42 bool bubbles; |
| 5 | 43 |
| 6 bool cancelBubble; | 44 bool cancelBubble; |
| 7 | 45 |
| 8 bool cancelable; | 46 bool cancelable; |
| 9 | 47 |
| 10 Clipboard clipboardData; | 48 Clipboard clipboardData; |
| 11 | 49 |
| 12 EventTarget currentTarget; | 50 EventTarget currentTarget; |
| 13 | 51 |
| (...skipping 16 matching lines...) Expand all Loading... |
| 30 void preventDefault() native; | 68 void preventDefault() native; |
| 31 | 69 |
| 32 void stopImmediatePropagation() native; | 70 void stopImmediatePropagation() native; |
| 33 | 71 |
| 34 void stopPropagation() native; | 72 void stopPropagation() native; |
| 35 | 73 |
| 36 var dartObjectLocalStorage; | 74 var dartObjectLocalStorage; |
| 37 | 75 |
| 38 String get typeName() native; | 76 String get typeName() native; |
| 39 } | 77 } |
| OLD | NEW |