| Index: lib/html/dartium/html_dartium.dart
|
| diff --git a/lib/html/dartium/html_dartium.dart b/lib/html/dartium/html_dartium.dart
|
| index 2f207c235512c9600599eaa527ea35bb809b3701..4f4f784aaf00472986c24a59125ad640c3ed88d4 100644
|
| --- a/lib/html/dartium/html_dartium.dart
|
| +++ b/lib/html/dartium/html_dartium.dart
|
| @@ -20199,9 +20199,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;
|
|
|
| @@ -20214,9 +20211,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;
|
|
|
| @@ -20649,8 +20643,6 @@ class _DOMWindowImpl extends _EventTargetImpl implements LocalWindow {
|
|
|
| Event get event native "DOMWindow_event_Getter";
|
|
|
| - Window get frames native "DOMWindow_frames_Getter";
|
| -
|
| History get history native "DOMWindow_history_Getter";
|
|
|
| IDBFactory get indexedDB native "DOMWindow_indexedDB_Getter";
|
| @@ -20659,8 +20651,6 @@ class _DOMWindowImpl extends _EventTargetImpl implements LocalWindow {
|
|
|
| int get innerWidth native "DOMWindow_innerWidth_Getter";
|
|
|
| - int get length native "DOMWindow_length_Getter";
|
| -
|
| Storage get localStorage native "DOMWindow_localStorage_Getter";
|
|
|
| Location get location native "DOMWindow_location_Getter";
|
| @@ -42317,8 +42307,6 @@ abstract class Window {
|
| Window get parent;
|
| Window get top;
|
|
|
| - // TODO(vsm): Add frames to navigate subframes. See 2312.
|
| -
|
| // Methods.
|
| void focus();
|
| void blur();
|
|
|