| Index: tools/dom/templates/html/impl/impl_DocumentFragment.darttemplate
|
| diff --git a/tools/dom/templates/html/impl/impl_DocumentFragment.darttemplate b/tools/dom/templates/html/impl/impl_DocumentFragment.darttemplate
|
| index c2afcdea358ac9c02b05fe102090658d23957872..7b85c2a8badc7ae3124879b1f3edec5b3991470d 100644
|
| --- a/tools/dom/templates/html/impl/impl_DocumentFragment.darttemplate
|
| +++ b/tools/dom/templates/html/impl/impl_DocumentFragment.darttemplate
|
| @@ -55,8 +55,8 @@ $endif
|
| e.innerHtml = value;
|
|
|
| // Copy list first since we don't want liveness during iteration.
|
| - List nodes = new List.from(e.nodes);
|
| - this.nodes.addAll(nodes);
|
| + List nodes = new List.from(e.nodes, growable: false);
|
| + this.append(nodes);
|
| }
|
|
|
| /**
|
|
|