| 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. | 5 // WARNING: Do not edit - generated code. |
| 6 | 6 |
| 7 interface Event { | 7 interface Event { |
| 8 | 8 |
| 9 static final int AT_TARGET = 2; | 9 static final int AT_TARGET = 2; |
| 10 | 10 |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 static final int SELECT = 16384; | 45 static final int SELECT = 16384; |
| 46 | 46 |
| 47 bool get bubbles(); | 47 bool get bubbles(); |
| 48 | 48 |
| 49 bool get cancelBubble(); | 49 bool get cancelBubble(); |
| 50 | 50 |
| 51 void set cancelBubble(bool value); | 51 void set cancelBubble(bool value); |
| 52 | 52 |
| 53 bool get cancelable(); | 53 bool get cancelable(); |
| 54 | 54 |
| 55 Clipboard get clipboardData(); |
| 56 |
| 55 EventTarget get currentTarget(); | 57 EventTarget get currentTarget(); |
| 56 | 58 |
| 57 bool get defaultPrevented(); | 59 bool get defaultPrevented(); |
| 58 | 60 |
| 59 int get eventPhase(); | 61 int get eventPhase(); |
| 60 | 62 |
| 61 bool get returnValue(); | 63 bool get returnValue(); |
| 62 | 64 |
| 63 void set returnValue(bool value); | 65 void set returnValue(bool value); |
| 64 | 66 |
| 65 EventTarget get srcElement(); | 67 EventTarget get srcElement(); |
| 66 | 68 |
| 67 EventTarget get target(); | 69 EventTarget get target(); |
| 68 | 70 |
| 69 int get timeStamp(); | 71 int get timeStamp(); |
| 70 | 72 |
| 71 String get type(); | 73 String get type(); |
| 72 | 74 |
| 73 void initEvent(String eventTypeArg, bool canBubbleArg, bool cancelableArg); | 75 void initEvent(String eventTypeArg, bool canBubbleArg, bool cancelableArg); |
| 74 | 76 |
| 75 void preventDefault(); | 77 void preventDefault(); |
| 76 | 78 |
| 77 void stopImmediatePropagation(); | 79 void stopImmediatePropagation(); |
| 78 | 80 |
| 79 void stopPropagation(); | 81 void stopPropagation(); |
| 80 } | 82 } |
| OLD | NEW |