| Index: client/html/release/htmlimpl.dart
|
| diff --git a/client/html/release/htmlimpl.dart b/client/html/release/htmlimpl.dart
|
| index 8581a977f86fb2293f13054b5837045c8e854a30..13dc71d298c18f4d6942442281459ac2babd1a70 100644
|
| --- a/client/html/release/htmlimpl.dart
|
| +++ b/client/html/release/htmlimpl.dart
|
| @@ -23891,8 +23891,8 @@ class _ChildrenNodeList implements NodeList {
|
| }
|
|
|
| void forEach(void f(Node element)) {
|
| - for (var node in _childNodes) {
|
| - f(LevelDom.wrapNode(node));
|
| + for (int i = 0, len = _childNodes.length; i < len; i++) {
|
| + f(LevelDom.wrapNode(_childNodes[i]));
|
| }
|
| }
|
|
|
|
|