Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(97)

Side by Side Diff: sdk/lib/html/dart2js/html_dart2js.dart

Issue 14150010: Fixed broken link in documentation. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | sdk/lib/html/dartium/html_dartium.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | sdk/lib/html/dartium/html_dartium.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698