| Index: client/dom/generated/src/frog/DOMWindow.dart
|
| diff --git a/client/dom/generated/src/frog/DOMWindow.dart b/client/dom/generated/src/frog/DOMWindow.dart
|
| index de778ff11c951ae57795ae9ee6a74f5e6c75ff7f..af0f86fb0e3204fe6182dbb04d5fce68782dfda7 100644
|
| --- a/client/dom/generated/src/frog/DOMWindow.dart
|
| +++ b/client/dom/generated/src/frog/DOMWindow.dart
|
| @@ -5,107 +5,179 @@ class DOMWindow native "@*DOMWindow" {
|
|
|
| static final int TEMPORARY = 0;
|
|
|
| - DOMApplicationCache applicationCache;
|
| + DOMApplicationCache get applicationCache() native "return this.applicationCache;";
|
|
|
| - Navigator clientInformation;
|
| + Navigator get clientInformation() native "return this.clientInformation;";
|
|
|
| - bool closed;
|
| + void set clientInformation(Navigator value) native "this.clientInformation = value;";
|
|
|
| - Console console;
|
| + bool get closed() native "return this.closed;";
|
|
|
| - Crypto crypto;
|
| + Console get console() native "return this.console;";
|
|
|
| - String defaultStatus;
|
| + void set console(Console value) native "this.console = value;";
|
|
|
| - String defaultstatus;
|
| + Crypto get crypto() native "return this.crypto;";
|
|
|
| - num devicePixelRatio;
|
| + String get defaultStatus() native "return this.defaultStatus;";
|
|
|
| - Document document;
|
| + void set defaultStatus(String value) native "this.defaultStatus = value;";
|
|
|
| - Event event;
|
| + String get defaultstatus() native "return this.defaultstatus;";
|
|
|
| - Element frameElement;
|
| + void set defaultstatus(String value) native "this.defaultstatus = value;";
|
|
|
| - DOMWindow frames;
|
| + num get devicePixelRatio() native "return this.devicePixelRatio;";
|
|
|
| - History history;
|
| + void set devicePixelRatio(num value) native "this.devicePixelRatio = value;";
|
|
|
| - int innerHeight;
|
| + Document get document() native "return this.document;";
|
|
|
| - int innerWidth;
|
| + Event get event() native "return this.event;";
|
|
|
| - int length;
|
| + void set event(Event value) native "this.event = value;";
|
|
|
| - Storage localStorage;
|
| + Element get frameElement() native "return this.frameElement;";
|
|
|
| - Location location;
|
| + DOMWindow get frames() native "return this.frames;";
|
|
|
| - BarInfo locationbar;
|
| + void set frames(DOMWindow value) native "this.frames = value;";
|
|
|
| - BarInfo menubar;
|
| + History get history() native "return this.history;";
|
|
|
| - String name;
|
| + void set history(History value) native "this.history = value;";
|
|
|
| - Navigator navigator;
|
| + int get innerHeight() native "return this.innerHeight;";
|
|
|
| - bool offscreenBuffering;
|
| + void set innerHeight(int value) native "this.innerHeight = value;";
|
|
|
| - DOMWindow opener;
|
| + int get innerWidth() native "return this.innerWidth;";
|
|
|
| - int outerHeight;
|
| + void set innerWidth(int value) native "this.innerWidth = value;";
|
|
|
| - int outerWidth;
|
| + int get length() native "return this.length;";
|
|
|
| - int pageXOffset;
|
| + void set length(int value) native "this.length = value;";
|
|
|
| - int pageYOffset;
|
| + Storage get localStorage() native "return this.localStorage;";
|
|
|
| - DOMWindow parent;
|
| + Location get location() native "return this.location;";
|
|
|
| - Performance performance;
|
| + void set location(Location value) native "this.location = value;";
|
|
|
| - BarInfo personalbar;
|
| + BarInfo get locationbar() native "return this.locationbar;";
|
|
|
| - Screen screen;
|
| + void set locationbar(BarInfo value) native "this.locationbar = value;";
|
|
|
| - int screenLeft;
|
| + BarInfo get menubar() native "return this.menubar;";
|
|
|
| - int screenTop;
|
| + void set menubar(BarInfo value) native "this.menubar = value;";
|
|
|
| - int screenX;
|
| + String get name() native "return this.name;";
|
|
|
| - int screenY;
|
| + void set name(String value) native "this.name = value;";
|
|
|
| - int scrollX;
|
| + Navigator get navigator() native "return this.navigator;";
|
|
|
| - int scrollY;
|
| + void set navigator(Navigator value) native "this.navigator = value;";
|
|
|
| - BarInfo scrollbars;
|
| + bool get offscreenBuffering() native "return this.offscreenBuffering;";
|
|
|
| - DOMWindow self;
|
| + void set offscreenBuffering(bool value) native "this.offscreenBuffering = value;";
|
|
|
| - Storage sessionStorage;
|
| + DOMWindow get opener() native "return this.opener;";
|
|
|
| - String status;
|
| + void set opener(DOMWindow value) native "this.opener = value;";
|
|
|
| - BarInfo statusbar;
|
| + int get outerHeight() native "return this.outerHeight;";
|
|
|
| - StyleMedia styleMedia;
|
| + void set outerHeight(int value) native "this.outerHeight = value;";
|
|
|
| - BarInfo toolbar;
|
| + int get outerWidth() native "return this.outerWidth;";
|
|
|
| - DOMWindow top;
|
| + void set outerWidth(int value) native "this.outerWidth = value;";
|
|
|
| - IDBFactory webkitIndexedDB;
|
| + int get pageXOffset() native "return this.pageXOffset;";
|
|
|
| - NotificationCenter webkitNotifications;
|
| + int get pageYOffset() native "return this.pageYOffset;";
|
|
|
| - StorageInfo webkitStorageInfo;
|
| + DOMWindow get parent() native "return this.parent;";
|
|
|
| - DOMURL webkitURL;
|
| + void set parent(DOMWindow value) native "this.parent = value;";
|
|
|
| - DOMWindow window;
|
| + Performance get performance() native "return this.performance;";
|
| +
|
| + void set performance(Performance value) native "this.performance = value;";
|
| +
|
| + BarInfo get personalbar() native "return this.personalbar;";
|
| +
|
| + void set personalbar(BarInfo value) native "this.personalbar = value;";
|
| +
|
| + Screen get screen() native "return this.screen;";
|
| +
|
| + void set screen(Screen value) native "this.screen = value;";
|
| +
|
| + int get screenLeft() native "return this.screenLeft;";
|
| +
|
| + void set screenLeft(int value) native "this.screenLeft = value;";
|
| +
|
| + int get screenTop() native "return this.screenTop;";
|
| +
|
| + void set screenTop(int value) native "this.screenTop = value;";
|
| +
|
| + int get screenX() native "return this.screenX;";
|
| +
|
| + void set screenX(int value) native "this.screenX = value;";
|
| +
|
| + int get screenY() native "return this.screenY;";
|
| +
|
| + void set screenY(int value) native "this.screenY = value;";
|
| +
|
| + int get scrollX() native "return this.scrollX;";
|
| +
|
| + void set scrollX(int value) native "this.scrollX = value;";
|
| +
|
| + int get scrollY() native "return this.scrollY;";
|
| +
|
| + void set scrollY(int value) native "this.scrollY = value;";
|
| +
|
| + BarInfo get scrollbars() native "return this.scrollbars;";
|
| +
|
| + void set scrollbars(BarInfo value) native "this.scrollbars = value;";
|
| +
|
| + DOMWindow get self() native "return this.self;";
|
| +
|
| + void set self(DOMWindow value) native "this.self = value;";
|
| +
|
| + Storage get sessionStorage() native "return this.sessionStorage;";
|
| +
|
| + String get status() native "return this.status;";
|
| +
|
| + void set status(String value) native "this.status = value;";
|
| +
|
| + BarInfo get statusbar() native "return this.statusbar;";
|
| +
|
| + void set statusbar(BarInfo value) native "this.statusbar = value;";
|
| +
|
| + StyleMedia get styleMedia() native "return this.styleMedia;";
|
| +
|
| + BarInfo get toolbar() native "return this.toolbar;";
|
| +
|
| + void set toolbar(BarInfo value) native "this.toolbar = value;";
|
| +
|
| + DOMWindow get top() native "return this.top;";
|
| +
|
| + void set top(DOMWindow value) native "this.top = value;";
|
| +
|
| + IDBFactory get webkitIndexedDB() native "return this.webkitIndexedDB;";
|
| +
|
| + NotificationCenter get webkitNotifications() native "return this.webkitNotifications;";
|
| +
|
| + StorageInfo get webkitStorageInfo() native "return this.webkitStorageInfo;";
|
| +
|
| + DOMURL get webkitURL() native "return this.webkitURL;";
|
| +
|
| + DOMWindow get window() native "return this.window;";
|
|
|
| void addEventListener(String type, EventListener listener, [bool useCapture = null]) native;
|
|
|
|
|