| OLD | NEW |
| 1 | 1 |
| 2 class DOMWindow native "DOMWindow" { | 2 class DOMWindow native "DOMWindow" { |
| 3 | 3 |
| 4 DOMApplicationCache applicationCache; | 4 DOMApplicationCache applicationCache; |
| 5 | 5 |
| 6 Navigator clientInformation; | 6 Navigator clientInformation; |
| 7 | 7 |
| 8 bool closed; | 8 bool closed; |
| 9 | 9 |
| 10 Console console; | 10 Console console; |
| (...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 272 DOMSelection getSelection() native; | 272 DOMSelection getSelection() native; |
| 273 | 273 |
| 274 MediaQueryList matchMedia(String query) native; | 274 MediaQueryList matchMedia(String query) native; |
| 275 | 275 |
| 276 void moveBy(num x, num y) native; | 276 void moveBy(num x, num y) native; |
| 277 | 277 |
| 278 void moveTo(num x, num y) native; | 278 void moveTo(num x, num y) native; |
| 279 | 279 |
| 280 DOMWindow open(String url, String name, [String options = null]) native; | 280 DOMWindow open(String url, String name, [String options = null]) native; |
| 281 | 281 |
| 282 void postMessage(String message, var messagePort_OR_targetOrigin, [String targ
etOrigin = null]) native; | 282 void postMessage(String message, String targetOrigin) native; |
| 283 | 283 |
| 284 void print() native; | 284 void print() native; |
| 285 | 285 |
| 286 String prompt(String message, String defaultValue) native; | 286 String prompt(String message, String defaultValue) native; |
| 287 | 287 |
| 288 void releaseEvents() native; | 288 void releaseEvents() native; |
| 289 | 289 |
| 290 void removeEventListener(String type, EventListener listener, [bool useCapture
= null]) native; | 290 void removeEventListener(String type, EventListener listener, [bool useCapture
= null]) native; |
| 291 | 291 |
| 292 void resizeBy(num x, num y) native; | 292 void resizeBy(num x, num y) native; |
| (...skipping 13 matching lines...) Expand all Loading... |
| 306 Object showModalDialog(String url, [Object dialogArgs = null, String featureAr
gs = null]) native; | 306 Object showModalDialog(String url, [Object dialogArgs = null, String featureAr
gs = null]) native; |
| 307 | 307 |
| 308 void stop() native; | 308 void stop() native; |
| 309 | 309 |
| 310 void webkitCancelRequestAnimationFrame(int id) native; | 310 void webkitCancelRequestAnimationFrame(int id) native; |
| 311 | 311 |
| 312 WebKitPoint webkitConvertPointFromNodeToPage(Node node, WebKitPoint p) native; | 312 WebKitPoint webkitConvertPointFromNodeToPage(Node node, WebKitPoint p) native; |
| 313 | 313 |
| 314 WebKitPoint webkitConvertPointFromPageToNode(Node node, WebKitPoint p) native; | 314 WebKitPoint webkitConvertPointFromPageToNode(Node node, WebKitPoint p) native; |
| 315 | 315 |
| 316 void webkitPostMessage(String message, String targetOrigin) native; |
| 317 |
| 316 int webkitRequestAnimationFrame(RequestAnimationFrameCallback callback, Elemen
t element) native; | 318 int webkitRequestAnimationFrame(RequestAnimationFrameCallback callback, Elemen
t element) native; |
| 317 | 319 |
| 318 var dartObjectLocalStorage; | 320 var dartObjectLocalStorage; |
| 319 | 321 |
| 320 String get typeName() native; | 322 String get typeName() native; |
| 321 } | 323 } |
| OLD | NEW |