| OLD | NEW |
| 1 | 1 |
| 2 class Event native "*Event" { | 2 class Event native "Event" { |
| 3 | 3 |
| 4 static final int AT_TARGET = 2; | 4 static final int AT_TARGET = 2; |
| 5 | 5 |
| 6 static final int BLUR = 8192; | 6 static final int BLUR = 8192; |
| 7 | 7 |
| 8 static final int BUBBLING_PHASE = 3; | 8 static final int BUBBLING_PHASE = 3; |
| 9 | 9 |
| 10 static final int CAPTURING_PHASE = 1; | 10 static final int CAPTURING_PHASE = 1; |
| 11 | 11 |
| 12 static final int CHANGE = 32768; | 12 static final int CHANGE = 32768; |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 void preventDefault() native; | 68 void preventDefault() native; |
| 69 | 69 |
| 70 void stopImmediatePropagation() native; | 70 void stopImmediatePropagation() native; |
| 71 | 71 |
| 72 void stopPropagation() native; | 72 void stopPropagation() native; |
| 73 | 73 |
| 74 var dartObjectLocalStorage; | 74 var dartObjectLocalStorage; |
| 75 | 75 |
| 76 String get typeName() native; | 76 String get typeName() native; |
| 77 } | 77 } |
| OLD | NEW |