| Index: tools/dom/templates/html/impl/impl_Node.darttemplate
|
| diff --git a/tools/dom/templates/html/impl/impl_Node.darttemplate b/tools/dom/templates/html/impl/impl_Node.darttemplate
|
| index f407ee70e37ac793d662dd6487ae61dd6b8cedfe..ceeb9220ce454b9e7007a8fb3e974106b3e99536 100644
|
| --- a/tools/dom/templates/html/impl/impl_Node.darttemplate
|
| +++ b/tools/dom/templates/html/impl/impl_Node.darttemplate
|
| @@ -69,6 +69,9 @@ $endif
|
|
|
|
|
| void addAll(Iterable<Node> iterable) {
|
| + if (iterable is _ChildNodeListLazy) {
|
| + iterable = new List.from(iterable);
|
| + }
|
| for (Node node in iterable) {
|
| _this.$dom_appendChild(node);
|
| }
|
|
|