| OLD | NEW |
| 1 #library('dart:dom_deprecated'); | 1 #library('dart:dom_deprecated'); |
| 2 | 2 |
| 3 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 3 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 4 // for details. All rights reserved. Use of this source code is governed by a | 4 // for details. All rights reserved. Use of this source code is governed by a |
| 5 // BSD-style license that can be found in the LICENSE file. | 5 // BSD-style license that can be found in the LICENSE file. |
| 6 | 6 |
| 7 // DO NOT EDIT | 7 // DO NOT EDIT |
| 8 // Auto-generated Dart DOM library with no implementation. | 8 // Auto-generated Dart DOM library with no implementation. |
| 9 | 9 |
| 10 | 10 |
| (...skipping 12071 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 12082 final String url; | 12082 final String url; |
| 12083 | 12083 |
| 12084 void addEventListener(String type, EventListener listener, [bool useCapture]); | 12084 void addEventListener(String type, EventListener listener, [bool useCapture]); |
| 12085 | 12085 |
| 12086 void close([int code, String reason]); | 12086 void close([int code, String reason]); |
| 12087 | 12087 |
| 12088 bool dispatchEvent(Event evt); | 12088 bool dispatchEvent(Event evt); |
| 12089 | 12089 |
| 12090 void removeEventListener(String type, EventListener listener, [bool useCapture
]); | 12090 void removeEventListener(String type, EventListener listener, [bool useCapture
]); |
| 12091 | 12091 |
| 12092 bool send(String data); | 12092 void send(data); |
| 12093 } | 12093 } |
| 12094 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 12094 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 12095 // for details. All rights reserved. Use of this source code is governed by a | 12095 // for details. All rights reserved. Use of this source code is governed by a |
| 12096 // BSD-style license that can be found in the LICENSE file. | 12096 // BSD-style license that can be found in the LICENSE file. |
| 12097 | 12097 |
| 12098 // WARNING: Do not edit - generated code. | 12098 // WARNING: Do not edit - generated code. |
| 12099 | 12099 |
| 12100 interface WheelEvent extends MouseEvent { | 12100 interface WheelEvent extends MouseEvent { |
| 12101 | 12101 |
| 12102 final bool webkitDirectionInvertedFromDevice; | 12102 final bool webkitDirectionInvertedFromDevice; |
| (...skipping 1016 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 13119 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 13119 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 13120 // for details. All rights reserved. Use of this source code is governed by a | 13120 // for details. All rights reserved. Use of this source code is governed by a |
| 13121 // BSD-style license that can be found in the LICENSE file. | 13121 // BSD-style license that can be found in the LICENSE file. |
| 13122 | 13122 |
| 13123 Window get window() => _dummy(); | 13123 Window get window() => _dummy(); |
| 13124 | 13124 |
| 13125 // TODO(vsm): Remove when prefixes are supported. | 13125 // TODO(vsm): Remove when prefixes are supported. |
| 13126 Window get dom_window() => _dummy(); | 13126 Window get dom_window() => _dummy(); |
| 13127 | 13127 |
| 13128 Document get document() => _dummy(); | 13128 Document get document() => _dummy(); |
| OLD | NEW |