| Index: sdk/lib/html/dartium/html_dartium.dart
|
| diff --git a/sdk/lib/html/dartium/html_dartium.dart b/sdk/lib/html/dartium/html_dartium.dart
|
| index 35282600d3117eb04a4d7658a595e20a74fee142..a2563f71130f655f04790e3e9f5639c084a5186c 100644
|
| --- a/sdk/lib/html/dartium/html_dartium.dart
|
| +++ b/sdk/lib/html/dartium/html_dartium.dart
|
| @@ -8393,7 +8393,7 @@ class _ChildrenElementList extends ListBase<Element> {
|
| }
|
|
|
| Iterable<Element> skip(int n) {
|
| - return _childElements.skipList(n);
|
| + return _childElements.skip(n);
|
| }
|
|
|
| Iterable<Element> skipWhile(bool test(Element value)) {
|
| @@ -8582,7 +8582,7 @@ class _ChildrenElementList extends ListBase<Element> {
|
| }
|
|
|
| Map<int, Element> asMap() {
|
| - return _childElements.asMapList(this);
|
| + return _childElements.asMap();
|
| }
|
|
|
| String toString() {
|
|
|