| 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 464 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 475 void captureEvents(); | 475 void captureEvents(); |
| 476 | 476 |
| 477 void clearInterval(int handle); | 477 void clearInterval(int handle); |
| 478 | 478 |
| 479 void clearTimeout(int handle); | 479 void clearTimeout(int handle); |
| 480 | 480 |
| 481 void close(); | 481 void close(); |
| 482 | 482 |
| 483 bool confirm(String message); | 483 bool confirm(String message); |
| 484 | 484 |
| 485 FileReader createFileReader(); | |
| 486 | |
| 487 WebKitCSSMatrix createWebKitCSSMatrix([String cssValue]); | |
| 488 | |
| 489 WebKitPoint createWebKitPoint(num x, num y); | |
| 490 | |
| 491 XMLHttpRequest createXMLHttpRequest(); | |
| 492 | |
| 493 bool dispatchEvent(Event evt); | 485 bool dispatchEvent(Event evt); |
| 494 | 486 |
| 495 bool find(String string, bool caseSensitive, bool backwards, bool wrap, bool w
holeWord, bool searchInFrames, bool showDialog); | 487 bool find(String string, bool caseSensitive, bool backwards, bool wrap, bool w
holeWord, bool searchInFrames, bool showDialog); |
| 496 | 488 |
| 497 void focus(); | 489 void focus(); |
| 498 | 490 |
| 499 CSSStyleDeclaration getComputedStyle(Element element, String pseudoElement); | 491 CSSStyleDeclaration getComputedStyle(Element element, String pseudoElement); |
| 500 | 492 |
| 501 DOMSelection getSelection(); | 493 DOMSelection getSelection(); |
| 502 | 494 |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 540 | 532 |
| 541 WebKitPoint webkitConvertPointFromNodeToPage(Node node, WebKitPoint p); | 533 WebKitPoint webkitConvertPointFromNodeToPage(Node node, WebKitPoint p); |
| 542 | 534 |
| 543 WebKitPoint webkitConvertPointFromPageToNode(Node node, WebKitPoint p); | 535 WebKitPoint webkitConvertPointFromPageToNode(Node node, WebKitPoint p); |
| 544 | 536 |
| 545 int webkitRequestAnimationFrame(RequestAnimationFrameCallback callback, Elemen
t element); | 537 int webkitRequestAnimationFrame(RequestAnimationFrameCallback callback, Elemen
t element); |
| 546 } | 538 } |
| 547 | 539 |
| 548 interface DOMWindow extends Window { | 540 interface DOMWindow extends Window { |
| 549 } | 541 } |
| OLD | NEW |