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

Unified Diff: lib/html/dart2js/html_dart2js.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 | « no previous file | lib/html/dartium/html_dartium.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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();
« no previous file with comments | « no previous file | lib/html/dartium/html_dartium.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698