| Index: sdk/lib/html/dart2js/html_dart2js.dart
|
| diff --git a/sdk/lib/html/dart2js/html_dart2js.dart b/sdk/lib/html/dart2js/html_dart2js.dart
|
| index 7c3a5c51199ffc0f257dbec90b4c3469fc114031..927f82471d9f1a17e835d77934f88117665ca9b7 100644
|
| --- a/sdk/lib/html/dart2js/html_dart2js.dart
|
| +++ b/sdk/lib/html/dart2js/html_dart2js.dart
|
| @@ -22007,6 +22007,22 @@ class _XSLTProcessorFactoryProvider {
|
| // BSD-style license that can be found in the LICENSE file.
|
|
|
|
|
| +/**
|
| + * An object representing the top-level context object for web scripting.
|
| + *
|
| + * In a web browser, a [Window] object represents the actual browser window.
|
| + * In a multi-tabbed browser, each tab has its own [Window] object. A [Window]
|
| + * is the container that displays a [Document]'s content. All web scripting
|
| + * happens within the context of a [Window] object.
|
| + *
|
| + * **Note:** This class represents any window, whereas [LocalWindow] is
|
| + * used to access the properties and content of the current window.
|
| + *
|
| + * See also:
|
| + *
|
| + * * [DOM Window](https://developer.mozilla.org/en-US/docs/DOM/window) from MDN.
|
| + * * [Window](http://www.w3.org/TR/Window/) from the W3C.
|
| + */
|
| abstract class Window {
|
| // Fields.
|
| Location get location;
|
|
|