Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6)

Unified Diff: client/html/src/ElementWrappingImplementation.dart

Issue 8835006: New version of dart:html (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix typos Created 9 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « client/html/src/DocumentWrappingImplementation.dart ('k') | client/html/src/GlobalProperties.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/html/src/ElementWrappingImplementation.dart
diff --git a/client/html/src/ElementWrappingImplementation.dart b/client/html/src/ElementWrappingImplementation.dart
index b5e3a752cc0b4876a31cf8f186656c85c7cd598f..387225730ee9710fb05b59cc8287588fd5f48685 100644
--- a/client/html/src/ElementWrappingImplementation.dart
+++ b/client/html/src/ElementWrappingImplementation.dart
@@ -518,7 +518,7 @@ class ElementWrappingImplementation extends NodeWrappingImplementation implement
parentTag = _CUSTOM_PARENT_TAG_MAP[tag];
}
}
- final temp = dom.document.createElement(parentTag);
+ dom.HTMLElement temp = dom.document.createElement(parentTag);
temp.innerHTML = html;
if (temp.childElementCount == 1) {
« no previous file with comments | « client/html/src/DocumentWrappingImplementation.dart ('k') | client/html/src/GlobalProperties.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698