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

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

Issue 9207020: 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/_StyleSheetListWrappingImplementation.dart
diff --git a/client/html/generated/src/wrapping/_StyleSheetListWrappingImplementation.dart b/client/html/generated/src/wrapping/_StyleSheetListWrappingImplementation.dart
index 29e02a29b37298a051a7aa807779b5b04f59754c..a1132bb9ce16d235ebf6cd61aaa4fb11b0d44bc8 100644
--- a/client/html/generated/src/wrapping/_StyleSheetListWrappingImplementation.dart
+++ b/client/html/generated/src/wrapping/_StyleSheetListWrappingImplementation.dart
@@ -38,12 +38,12 @@ class StyleSheetListWrappingImplementation extends DOMWrapperBase implements Sty
}
int indexOf(StyleSheet element, [int start = 0]) {
- return _Lists.indexOf(this, element, start, this.length);
+ return Lists.indexOf(this, element, start, this.length);
}
int lastIndexOf(StyleSheet 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