| OLD | NEW |
| 1 /// The Dart HTML library. | 1 /// The Dart HTML library. |
| 2 library dart.dom.html; | 2 library dart.dom.html; |
| 3 | 3 |
| 4 import 'dart:async'; | 4 import 'dart:async'; |
| 5 import 'dart:collection'; | 5 import 'dart:collection'; |
| 6 import 'dart:_collection-dev'; | 6 import 'dart:_collection-dev'; |
| 7 import 'dart:html_common'; | 7 import 'dart:html_common'; |
| 8 import 'dart:indexed_db'; | 8 import 'dart:indexed_db'; |
| 9 import 'dart:isolate'; | 9 import 'dart:isolate'; |
| 10 import 'dart:json' as json; | 10 import 'dart:json' as json; |
| (...skipping 12304 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 12315 | 12315 |
| 12316 @JSName('removeEventListener') | 12316 @JSName('removeEventListener') |
| 12317 @DomName('XMLHttpRequest.removeEventListener') | 12317 @DomName('XMLHttpRequest.removeEventListener') |
| 12318 @DocsEditable | 12318 @DocsEditable |
| 12319 void $dom_removeEventListener(String type, EventListener listener, [bool useCa
pture]) native; | 12319 void $dom_removeEventListener(String type, EventListener listener, [bool useCa
pture]) native; |
| 12320 | 12320 |
| 12321 /** | 12321 /** |
| 12322 * Send the request with any given `data`. | 12322 * Send the request with any given `data`. |
| 12323 * | 12323 * |
| 12324 * See also: | 12324 * See also: |
| 12325 * [send() docs](https://developer.mozilla.org/en-US/docs/DOM/XMLHttpRequest#s
end()) | 12325 * |
| 12326 * * [send](https://developer.mozilla.org/en-US/docs/DOM/XMLHttpRequest#send
%28%29) |
| 12326 * from MDN. | 12327 * from MDN. |
| 12327 */ | 12328 */ |
| 12328 @DomName('XMLHttpRequest.send') | 12329 @DomName('XMLHttpRequest.send') |
| 12329 @DocsEditable | 12330 @DocsEditable |
| 12330 void send([data]) native; | 12331 void send([data]) native; |
| 12331 | 12332 |
| 12332 @DomName('XMLHttpRequest.setRequestHeader') | 12333 @DomName('XMLHttpRequest.setRequestHeader') |
| 12333 @DocsEditable | 12334 @DocsEditable |
| 12334 void setRequestHeader(String header, String value) native; | 12335 void setRequestHeader(String header, String value) native; |
| 12335 | 12336 |
| (...skipping 17549 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 29885 _position = nextPosition; | 29886 _position = nextPosition; |
| 29886 return true; | 29887 return true; |
| 29887 } | 29888 } |
| 29888 _current = null; | 29889 _current = null; |
| 29889 _position = _array.length; | 29890 _position = _array.length; |
| 29890 return false; | 29891 return false; |
| 29891 } | 29892 } |
| 29892 | 29893 |
| 29893 T get current => _current; | 29894 T get current => _current; |
| 29894 } | 29895 } |
| OLD | NEW |