| Index: lib/dom/templates/html/dartium/html_dartium.darttemplate
|
| diff --git a/lib/dom/templates/html/dartium/html_dartium.darttemplate b/lib/dom/templates/html/dartium/html_dartium.darttemplate
|
| index 30b44010869e1111330533000e550859878601cd..2ae7d5bad789ee0db99d655cdd0bcdfc338f95c6 100644
|
| --- a/lib/dom/templates/html/dartium/html_dartium.darttemplate
|
| +++ b/lib/dom/templates/html/dartium/html_dartium.darttemplate
|
| @@ -68,11 +68,13 @@ _DocumentImpl get _document() {
|
| }
|
|
|
| _unwrap(raw) {
|
| + return raw;
|
| return raw is _DOMTypeBase ? raw._ptr : raw;
|
| }
|
|
|
| // Warning: does not attempt wrap event listeners.
|
| _wrap(raw) {
|
| + return raw;
|
| if (raw is! _DOMWrapperBase) return raw;
|
| _DOMWrapperBase domObject = raw;
|
| if (domObject.dartObjectLocalStorage != null)
|
|
|