| Index: client/dom/frog_dom.dart
|
| diff --git a/client/dom/frog_dom.dart b/client/dom/frog_dom.dart
|
| index 1f6877722991ec76b23fff68b978fa88cb333222..79ad5217a77c6cf047668c19bb0e0460dcbfc570 100644
|
| --- a/client/dom/frog_dom.dart
|
| +++ b/client/dom/frog_dom.dart
|
| @@ -536,7 +536,10 @@
|
| #source('src/_ListIterators.dart');
|
| #source('src/_Lists.dart');
|
|
|
| -class Window extends DOMWindow {}
|
| +// TODO(jmesserly): 'native' here is aWork-around for Frog bug. Frog needs to
|
| +// be smarter about inheriting from a hidden native type (in this case
|
| +// DOMWindow)
|
| +class Window extends DOMWindow native "*Window" {}
|
| DOMWindow get window() native "return window;";
|
| // TODO(vsm): Revert to Dart method when 508 is fixed.
|
| HTMLDocument get document() native "return window.document;";
|
|
|