| 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 Notification extends EventTarget { | 7 interface Notification extends EventTarget { |
| 8 | 8 |
| 9 String get dir(); | 9 String get dir(); |
| 10 | 10 |
| 11 void set dir(String value); | 11 void set dir(String value); |
| 12 | 12 |
| 13 EventListener get onclick(); | |
| 14 | |
| 15 void set onclick(EventListener value); | |
| 16 | |
| 17 EventListener get onclose(); | |
| 18 | |
| 19 void set onclose(EventListener value); | |
| 20 | |
| 21 EventListener get ondisplay(); | |
| 22 | |
| 23 void set ondisplay(EventListener value); | |
| 24 | |
| 25 EventListener get onerror(); | |
| 26 | |
| 27 void set onerror(EventListener value); | |
| 28 | |
| 29 String get replaceId(); | 13 String get replaceId(); |
| 30 | 14 |
| 31 void set replaceId(String value); | 15 void set replaceId(String value); |
| 32 | 16 |
| 33 void addEventListener(String type, EventListener listener, [bool useCapture]); | 17 void addEventListener(String type, EventListener listener, [bool useCapture]); |
| 34 | 18 |
| 35 void cancel(); | 19 void cancel(); |
| 36 | 20 |
| 37 bool dispatchEvent(Event evt); | 21 bool dispatchEvent(Event evt); |
| 38 | 22 |
| 39 void removeEventListener(String type, EventListener listener, [bool useCapture
]); | 23 void removeEventListener(String type, EventListener listener, [bool useCapture
]); |
| 40 | 24 |
| 41 void show(); | 25 void show(); |
| 42 } | 26 } |
| OLD | NEW |