Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(601)

Unified Diff: lib/html/dartium/html_dartium.dart

Issue 11065039: Remove window.length and window.frames (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
Download patch
« no previous file with comments | « lib/html/dart2js/html_dart2js.dart ('k') | lib/html/scripts/htmlrenamer.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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();
« no previous file with comments | « lib/html/dart2js/html_dart2js.dart ('k') | lib/html/scripts/htmlrenamer.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698