| OLD | NEW |
| 1 | 1 |
| 2 class Event native "Event" { | 2 class Event native "*Event" { |
| 3 | 3 |
| 4 bool bubbles; | 4 bool bubbles; |
| 5 | 5 |
| 6 bool cancelBubble; | 6 bool cancelBubble; |
| 7 | 7 |
| 8 bool cancelable; | 8 bool cancelable; |
| 9 | 9 |
| 10 Clipboard clipboardData; | 10 Clipboard clipboardData; |
| 11 | 11 |
| 12 EventTarget currentTarget; | 12 EventTarget currentTarget; |
| (...skipping 17 matching lines...) Expand all Loading... |
| 30 void preventDefault() native; | 30 void preventDefault() native; |
| 31 | 31 |
| 32 void stopImmediatePropagation() native; | 32 void stopImmediatePropagation() native; |
| 33 | 33 |
| 34 void stopPropagation() native; | 34 void stopPropagation() native; |
| 35 | 35 |
| 36 var dartObjectLocalStorage; | 36 var dartObjectLocalStorage; |
| 37 | 37 |
| 38 String get typeName() native; | 38 String get typeName() native; |
| 39 } | 39 } |
| OLD | NEW |