| Index: client/html/src/ElementWrappingImplementation.dart
|
| diff --git a/client/html/src/ElementWrappingImplementation.dart b/client/html/src/ElementWrappingImplementation.dart
|
| index d82ad74a1b381ec27229ee016ef6b5d3d780d2aa..20924c065edc565196f9d92d21b6fb437ef1b8c9 100644
|
| --- a/client/html/src/ElementWrappingImplementation.dart
|
| +++ b/client/html/src/ElementWrappingImplementation.dart
|
| @@ -540,7 +540,7 @@ class ElementWrappingImplementation extends NodeWrappingImplementation implement
|
| var temp = dom.document.createElement(parentTag);
|
| temp.innerHTML = html;
|
|
|
| - var element;
|
| + Element element;
|
| if (temp.childElementCount == 1) {
|
| element = LevelDom.wrapElement(temp.firstElementChild);
|
| } else if (parentTag == 'html' && temp.childElementCount == 2) {
|
|
|