| 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 6ce15f69bc9ce6f39d26a39138dcae473bbd4370..678737a9829c4698c3b54078b8a520a0971b3c98 100644
|
| --- a/sdk/lib/html/dartium/html_dartium.dart
|
| +++ b/sdk/lib/html/dartium/html_dartium.dart
|
| @@ -8945,7 +8945,7 @@ class _ChildrenElementList implements List {
|
| if (index == length) {
|
| _element.append(element);
|
| } else {
|
| - throw new UnimplementedError("insert on ElementLists");
|
| + _element.insertBefore(element, this[index]);
|
| }
|
| }
|
|
|
| @@ -18888,7 +18888,7 @@ class _ChildNodeListLazy implements List {
|
| if (index == length) {
|
| _this.append(node);
|
| } else {
|
| - this_.insertBefore(node, this[index]);
|
| + _this.insertBefore(node, this[index]);
|
| }
|
| }
|
|
|
|
|