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

Unified Diff: client/html/release/htmlimpl.dart

Side-by-side diff isn't available for this file because of its large size.
Issue 9113004: Use .dynamic to suppress dartc warning. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
Download patch
« no previous file with comments | « no previous file | client/html/src/SVGElementWrappingImplementation.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/html/release/htmlimpl.dart
diff --git a/client/html/release/htmlimpl.dart b/client/html/release/htmlimpl.dart
index 3c0f07fca37cd7b41cf3b16b3b71f01a5d2ccb5e..7a80a81496a614d6c735665835152b8e9eeb2c8c 100644
--- a/client/html/release/htmlimpl.dart
+++ b/client/html/release/htmlimpl.dart
@@ -24071,7 +24071,7 @@ class SVGElementWrappingImplementation extends ElementWrappingImplementation imp
String get innerHTML() {
final container = new Element.tag("div");
- container.elements.addAll(this.clone(true).elements);
+ container.elements.addAll(this.clone(true).dynamic.elements);
return container.innerHTML;
}
« no previous file with comments | « no previous file | client/html/src/SVGElementWrappingImplementation.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698