| Index: lib/html/templates/html/dartium/html_dartium.darttemplate
|
| diff --git a/lib/html/templates/html/dartium/html_dartium.darttemplate b/lib/html/templates/html/dartium/html_dartium.darttemplate
|
| index f94862362790d6c729aa167a56e520c2912584d7..70d2ddb10f32b49c3e7f6d44adb32628273a0b30 100644
|
| --- a/lib/html/templates/html/dartium/html_dartium.darttemplate
|
| +++ b/lib/html/templates/html/dartium/html_dartium.darttemplate
|
| @@ -38,7 +38,7 @@ $!GENERATED_DART_FILES
|
| LocalWindow __window;
|
|
|
| LocalWindow get window {
|
| - if (__window !== null) {
|
| + if (__window != null) {
|
| return __window;
|
| }
|
| __window = _Utils.window();
|
| @@ -50,7 +50,7 @@ LocalWindow get _window native "Utils_window";
|
| Document __document;
|
|
|
| Document get document {
|
| - if (__document !== null) {
|
| + if (__document != null) {
|
| return __document;
|
| }
|
| __document = _document;
|
|
|