Index: sdk/lib/html/dartium/html_dartium.dart |
diff --git a/sdk/lib/html/dartium/html_dartium.dart b/sdk/lib/html/dartium/html_dartium.dart |
index 321dae9fc0e9ae09df0127d3d6889559a1028702..99258938e99f965ebb74e13d66d40e2193e7c0fe 100644 |
--- a/sdk/lib/html/dartium/html_dartium.dart |
+++ b/sdk/lib/html/dartium/html_dartium.dart |
@@ -11065,9 +11065,9 @@ class Document extends Node |
var newElement = (typeExtension == null) ? |
_blink.BlinkDocument.instance.createElementNS_Callback_2_(unwrap_jso(this), namespaceURI, qualifiedName) : |
_blink.BlinkDocument.instance.createElementNS_Callback_3_(unwrap_jso(this), namespaceURI, qualifiedName, typeExtension); |
- |
+ |
var wrapped; |
- |
+ |
if (newElement['dart_class'] != null) { |
wrapped = newElement['dart_class']; // Here's our Dart class. |
wrapped.blink_jsObject = newElement; |
@@ -11077,7 +11077,7 @@ class Document extends Node |
wrapped = wrap_jso_custom_element(newElement); |
} |
} |
- |
+ |
return wrapped; |
} |