| OLD | NEW |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 // WARNING: Do not edit - generated code. | 5 // WARNING: Do not edit - generated code. |
| 6 | 6 |
| 7 interface Window extends EventTarget { | 7 interface Window extends EventTarget { |
| 8 | 8 |
| 9 DOMApplicationCache get applicationCache(); | 9 DOMApplicationCache get applicationCache(); |
| 10 | 10 |
| (...skipping 482 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 493 DOMSelection getSelection(); | 493 DOMSelection getSelection(); |
| 494 | 494 |
| 495 MediaQueryList matchMedia(String query); | 495 MediaQueryList matchMedia(String query); |
| 496 | 496 |
| 497 void moveBy(num x, num y); | 497 void moveBy(num x, num y); |
| 498 | 498 |
| 499 void moveTo(num x, num y); | 499 void moveTo(num x, num y); |
| 500 | 500 |
| 501 DOMWindow open(String url, String name, [String options]); | 501 DOMWindow open(String url, String name, [String options]); |
| 502 | 502 |
| 503 void postMessage(String message, var messagePort_OR_targetOrigin, [String targ
etOrigin]); | 503 void postMessage(String message, String targetOrigin); |
| 504 | 504 |
| 505 void print(); | 505 void print(); |
| 506 | 506 |
| 507 String prompt(String message, String defaultValue); | 507 String prompt(String message, String defaultValue); |
| 508 | 508 |
| 509 void releaseEvents(); | 509 void releaseEvents(); |
| 510 | 510 |
| 511 void removeEventListener(String type, EventListener listener, [bool useCapture
]); | 511 void removeEventListener(String type, EventListener listener, [bool useCapture
]); |
| 512 | 512 |
| 513 void resizeBy(num x, num y); | 513 void resizeBy(num x, num y); |
| (...skipping 13 matching lines...) Expand all Loading... |
| 527 Object showModalDialog(String url, [Object dialogArgs, String featureArgs]); | 527 Object showModalDialog(String url, [Object dialogArgs, String featureArgs]); |
| 528 | 528 |
| 529 void stop(); | 529 void stop(); |
| 530 | 530 |
| 531 void webkitCancelRequestAnimationFrame(int id); | 531 void webkitCancelRequestAnimationFrame(int id); |
| 532 | 532 |
| 533 WebKitPoint webkitConvertPointFromNodeToPage(Node node, WebKitPoint p); | 533 WebKitPoint webkitConvertPointFromNodeToPage(Node node, WebKitPoint p); |
| 534 | 534 |
| 535 WebKitPoint webkitConvertPointFromPageToNode(Node node, WebKitPoint p); | 535 WebKitPoint webkitConvertPointFromPageToNode(Node node, WebKitPoint p); |
| 536 | 536 |
| 537 void webkitPostMessage(String message, String targetOrigin); |
| 538 |
| 537 int webkitRequestAnimationFrame(RequestAnimationFrameCallback callback, Elemen
t element); | 539 int webkitRequestAnimationFrame(RequestAnimationFrameCallback callback, Elemen
t element); |
| 538 } | 540 } |
| 539 | 541 |
| 540 interface DOMWindow extends Window { | 542 interface DOMWindow extends Window { |
| 541 } | 543 } |
| OLD | NEW |