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

Side by Side Diff: client/html/release/html.dart

Issue 9271019: Make NodeList methods return NodeLists rather than List<Node>. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 11 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 | client/html/release/htmlimpl.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 #library('html'); 1 #library('html');
2 2
3 #import('dart:dom', prefix:'dom'); 3 #import('dart:dom', prefix:'dom');
4 #import('dart:htmlimpl'); 4 #import('dart:htmlimpl');
5 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 5 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
6 // for details. All rights reserved. Use of this source code is governed by a 6 // for details. All rights reserved. Use of this source code is governed by a
7 // BSD-style license that can be found in the LICENSE file. 7 // BSD-style license that can be found in the LICENSE file.
8 8
9 // DO NOT EDIT 9 // DO NOT EDIT
10 // Auto-generated Dart HTML library. 10 // Auto-generated Dart HTML library.
(...skipping 12510 matching lines...) Expand 10 before | Expand all | Expand 10 after
12521 // array. 12521 // array.
12522 Node insertBefore(Node newChild, Node refChild); 12522 Node insertBefore(Node newChild, Node refChild);
12523 12523
12524 Node clone(bool deep); 12524 Node clone(bool deep);
12525 } 12525 }
12526 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 12526 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
12527 // for details. All rights reserved. Use of this source code is governed by a 12527 // for details. All rights reserved. Use of this source code is governed by a
12528 // BSD-style license that can be found in the LICENSE file. 12528 // BSD-style license that can be found in the LICENSE file.
12529 12529
12530 interface NodeList extends List<Node> { 12530 interface NodeList extends List<Node> {
12531 NodeList filter(bool f(Node element));
12532
12533 NodeList getRange(int start, int length);
12534
12531 Node get first(); 12535 Node get first();
12532 } 12536 }
12533 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 12537 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
12534 // for details. All rights reserved. Use of this source code is governed by a 12538 // for details. All rights reserved. Use of this source code is governed by a
12535 // BSD-style license that can be found in the LICENSE file. 12539 // BSD-style license that can be found in the LICENSE file.
12536 12540
12537 interface Notification extends EventTarget { 12541 interface Notification extends EventTarget {
12538 12542
12539 String get dir(); 12543 String get dir();
12540 12544
(...skipping 949 matching lines...) Expand 10 before | Expand all | Expand 10 after
13490 EventListenerList get abort(); 13494 EventListenerList get abort();
13491 EventListenerList get error(); 13495 EventListenerList get error();
13492 EventListenerList get load(); 13496 EventListenerList get load();
13493 EventListenerList get loadStart(); 13497 EventListenerList get loadStart();
13494 EventListenerList get progress(); 13498 EventListenerList get progress();
13495 } 13499 }
13496 13500
13497 interface XMLHttpRequestUpload extends EventTarget { 13501 interface XMLHttpRequestUpload extends EventTarget {
13498 XMLHttpRequestUploadEvents get on(); 13502 XMLHttpRequestUploadEvents get on();
13499 } 13503 }
OLDNEW
« no previous file with comments | « no previous file | client/html/release/htmlimpl.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698