| Index: lib/html/dart2js/html_dart2js.dart
|
| diff --git a/lib/html/dart2js/html_dart2js.dart b/lib/html/dart2js/html_dart2js.dart
|
| index c2e04e3fa00d9aed0441f12ec42db612116478f8..a45552121903f98df7f7ca96a28a95ed5e91da7e 100644
|
| --- a/lib/html/dart2js/html_dart2js.dart
|
| +++ b/lib/html/dart2js/html_dart2js.dart
|
| @@ -18016,9 +18016,6 @@ abstract class LocalWindow implements EventTarget, Window {
|
| /** @domName Window.event */
|
| abstract Event get event;
|
|
|
| - /** @domName Window.frames */
|
| - abstract Window get frames;
|
| -
|
| /** @domName Window.history */
|
| abstract History get history;
|
|
|
| @@ -18031,9 +18028,6 @@ abstract class LocalWindow implements EventTarget, Window {
|
| /** @domName Window.innerWidth */
|
| abstract int get innerWidth;
|
|
|
| - /** @domName Window.length */
|
| - abstract int get length;
|
| -
|
| /** @domName Window.localStorage */
|
| abstract Storage get localStorage;
|
|
|
| @@ -18574,16 +18568,12 @@ class _LocalWindowImpl extends _EventTargetImpl implements LocalWindow native "@
|
|
|
| final _EventImpl event;
|
|
|
| - final Window frames;
|
| -
|
| final _LocalHistoryImpl history;
|
|
|
| final int innerHeight;
|
|
|
| final int innerWidth;
|
|
|
| - final int length;
|
| -
|
| final _StorageImpl localStorage;
|
|
|
| final _BarInfoImpl locationbar;
|
| @@ -38047,8 +38037,6 @@ abstract class Window {
|
| Window get parent;
|
| Window get top;
|
|
|
| - // TODO(vsm): Add frames to navigate subframes. See 2312.
|
| -
|
| // Methods.
|
| void focus();
|
| void blur();
|
|
|