| OLD | NEW |
| 1 /// The Dart HTML library. | 1 /// The Dart HTML library. |
| 2 /// | 2 /// |
| 3 /// For examples, see | 3 /// For examples, see |
| 4 /// [Dart HTML5 Samples](https://github.com/dart-lang/dart-html5-samples) | 4 /// [Dart HTML5 Samples](https://github.com/dart-lang/dart-html5-samples) |
| 5 /// on Github. | 5 /// on Github. |
| 6 library dart.dom.html; | 6 library dart.dom.html; |
| 7 | 7 |
| 8 import 'dart:async'; | 8 import 'dart:async'; |
| 9 import 'dart:collection'; | 9 import 'dart:collection'; |
| 10 import 'dart:_collection-dev' hide Symbol, deprecated; | 10 import 'dart:_collection-dev' hide Symbol, deprecated; |
| (...skipping 12168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 12179 * </table> | 12179 * </table> |
| 12180 */ | 12180 */ |
| 12181 @DomName('XMLHttpRequest.readyState') | 12181 @DomName('XMLHttpRequest.readyState') |
| 12182 @DocsEditable() | 12182 @DocsEditable() |
| 12183 final int readyState; | 12183 final int readyState; |
| 12184 | 12184 |
| 12185 /** | 12185 /** |
| 12186 * The data received as a reponse from the request. | 12186 * The data received as a reponse from the request. |
| 12187 * | 12187 * |
| 12188 * The data could be in the | 12188 * The data could be in the |
| 12189 * form of a [String], [ArrayBuffer], [Document], [Blob], or json (also a | 12189 * form of a [String], [ByteBuffer], [Document], [Blob], or json (also a |
| 12190 * [String]). `null` indicates request failure. | 12190 * [String]). `null` indicates request failure. |
| 12191 */ | 12191 */ |
| 12192 @DomName('XMLHttpRequest.response') | 12192 @DomName('XMLHttpRequest.response') |
| 12193 @DocsEditable() | 12193 @DocsEditable() |
| 12194 @SupportedBrowser(SupportedBrowser.CHROME) | 12194 @SupportedBrowser(SupportedBrowser.CHROME) |
| 12195 @SupportedBrowser(SupportedBrowser.FIREFOX) | 12195 @SupportedBrowser(SupportedBrowser.FIREFOX) |
| 12196 @SupportedBrowser(SupportedBrowser.IE, '10') | 12196 @SupportedBrowser(SupportedBrowser.IE, '10') |
| 12197 @SupportedBrowser(SupportedBrowser.SAFARI) | 12197 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 12198 @Creates('ByteBuffer|Blob|Document|=Object|JSExtendableArray|String|num') | 12198 @Creates('ByteBuffer|Blob|Document|=Object|JSExtendableArray|String|num') |
| 12199 final Object response; | 12199 final Object response; |
| (...skipping 17257 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 29457 _position = nextPosition; | 29457 _position = nextPosition; |
| 29458 return true; | 29458 return true; |
| 29459 } | 29459 } |
| 29460 _current = null; | 29460 _current = null; |
| 29461 _position = _array.length; | 29461 _position = _array.length; |
| 29462 return false; | 29462 return false; |
| 29463 } | 29463 } |
| 29464 | 29464 |
| 29465 T get current => _current; | 29465 T get current => _current; |
| 29466 } | 29466 } |
| OLD | NEW |