| Index: tools/dom/templates/html/impl/impl_Element.darttemplate
|
| diff --git a/tools/dom/templates/html/impl/impl_Element.darttemplate b/tools/dom/templates/html/impl/impl_Element.darttemplate
|
| index f4f9de1c083215a2c8b0dadb52e8fd550c406d6b..791b1ab6f76b14a6a3d9731c60b3a8e4cfaf6c67 100644
|
| --- a/tools/dom/templates/html/impl/impl_Element.darttemplate
|
| +++ b/tools/dom/templates/html/impl/impl_Element.darttemplate
|
| @@ -140,6 +140,10 @@ class _ChildrenElementList implements List {
|
| Iterator<Element> get iterator => toList().iterator;
|
|
|
| void addAll(Iterable<Element> iterable) {
|
| + if (iterable is _ChildNodeListLazy) {
|
| + iterable = new List.from(iterable);
|
| + }
|
| +
|
| for (Element element in iterable) {
|
| _element.$dom_appendChild(element);
|
| }
|
|
|