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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | client/html/release/htmlimpl.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/html/release/html.dart
diff --git a/client/html/release/html.dart b/client/html/release/html.dart
index 7cde3370964ea4f173c2e83ae43aa09982283766..115221ac18e8144dc63c61061a39fe6219674208 100644
--- a/client/html/release/html.dart
+++ b/client/html/release/html.dart
@@ -12528,6 +12528,10 @@ interface Node extends EventTarget {
// BSD-style license that can be found in the LICENSE file.
interface NodeList extends List<Node> {
+ NodeList filter(bool f(Node element));
+
+ NodeList getRange(int start, int length);
+
Node get first();
}
// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
« 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