| Index: lib/runtime/dart/html.js
|
| diff --git a/lib/runtime/dart/html.js b/lib/runtime/dart/html.js
|
| index d3efb06f8f70e036edf2bcadd14943083d8b9d02..3bf6beddc4a139cd39549fac3ec104c12149359c 100644
|
| --- a/lib/runtime/dart/html.js
|
| +++ b/lib/runtime/dart/html.js
|
| @@ -176,7 +176,8 @@ dart_library.library('dart/html', null, /* Imports */[
|
| set [dartx.nodes](value) {
|
| let copy = core.List.from(value);
|
| this[dartx.text] = '';
|
| - for (let node of dart.as(copy, core.Iterable$(Node))) {
|
| + for (let node of copy) {
|
| + dart.as(node, Node);
|
| this[dartx.append](node);
|
| }
|
| }
|
|
|