| OLD | NEW |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 // WARNING: Do not edit - generated code. | |
| 6 | |
| 7 interface Event { | 5 interface Event { |
| 8 | 6 |
| 9 static final int AT_TARGET = 2; | 7 static final int AT_TARGET = 2; |
| 10 | 8 |
| 11 static final int BLUR = 8192; | 9 static final int BLUR = 8192; |
| 12 | 10 |
| 13 static final int BUBBLING_PHASE = 3; | 11 static final int BUBBLING_PHASE = 3; |
| 14 | 12 |
| 15 static final int CAPTURING_PHASE = 1; | 13 static final int CAPTURING_PHASE = 1; |
| 16 | 14 |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 String get type(); | 69 String get type(); |
| 72 | 70 |
| 73 void initEvent(String eventTypeArg, bool canBubbleArg, bool cancelableArg); | 71 void initEvent(String eventTypeArg, bool canBubbleArg, bool cancelableArg); |
| 74 | 72 |
| 75 void preventDefault(); | 73 void preventDefault(); |
| 76 | 74 |
| 77 void stopImmediatePropagation(); | 75 void stopImmediatePropagation(); |
| 78 | 76 |
| 79 void stopPropagation(); | 77 void stopPropagation(); |
| 80 } | 78 } |
| OLD | NEW |