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

Unified Diff: client/html/generated/src/wrapping/_MediaListWrappingImplementation.dart

Issue 9178030: Add tests for Element#elements. (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
Index: client/html/generated/src/wrapping/_MediaListWrappingImplementation.dart
diff --git a/client/html/generated/src/wrapping/_MediaListWrappingImplementation.dart b/client/html/generated/src/wrapping/_MediaListWrappingImplementation.dart
index 1c816d8987e6dac419aaa9b3d5729060cdedc873..f7c1a2e7c14b5336c9c6fc8cf7ff704157a79a15 100644
--- a/client/html/generated/src/wrapping/_MediaListWrappingImplementation.dart
+++ b/client/html/generated/src/wrapping/_MediaListWrappingImplementation.dart
@@ -42,12 +42,12 @@ class MediaListWrappingImplementation extends DOMWrapperBase implements MediaLis
}
int indexOf(String element, [int start = 0]) {
- return _Lists.indexOf(this, element, start, this.length);
+ return Lists.indexOf(this, element, start, this.length);
}
int lastIndexOf(String element, [int start = null]) {
if (start === null) start = length - 1;
- return _Lists.lastIndexOf(this, element, start);
+ return Lists.lastIndexOf(this, element, start);
}
int clear() {

Powered by Google App Engine
This is Rietveld 408576698