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: | 5 // WARNING: |
6 // This file contains documentation that is merged into the real source. | 6 // This file contains documentation that is merged into the real source. |
7 // Do not make code changes here. | 7 // Do not make code changes here. |
8 | 8 |
9 /** | 9 /** |
10 * HttpRequest is Dart's name for the XMLHttpRequest object, as described below. | 10 * HttpRequest is Dart's name for the XMLHttpRequest object, as described below. |
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
102 EventListenerList get load; | 102 EventListenerList get load; |
103 | 103 |
104 EventListenerList get loadEnd; | 104 EventListenerList get loadEnd; |
105 | 105 |
106 EventListenerList get loadStart; | 106 EventListenerList get loadStart; |
107 | 107 |
108 EventListenerList get progress; | 108 EventListenerList get progress; |
109 | 109 |
110 EventListenerList get readyStateChange; | 110 EventListenerList get readyStateChange; |
111 } | 111 } |
OLD | NEW |