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

Unified Diff: sdk/lib/html/src/dart2js_DOMImplementation.dart

Issue 11415076: Removing Window.blur() and Window.focus(). This time for real. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Testing. Created 8 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sdk/lib/html/src/CrossFrameTypes.dart ('k') | sdk/lib/html/src/native_DOMImplementation.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/html/src/dart2js_DOMImplementation.dart
diff --git a/sdk/lib/html/src/dart2js_DOMImplementation.dart b/sdk/lib/html/src/dart2js_DOMImplementation.dart
index 43be003f3bcebfe3602baee3060a97f7675b72f2..9056a1493650bd6a2343f98a9f8053f0c4dbd951 100644
--- a/sdk/lib/html/src/dart2js_DOMImplementation.dart
+++ b/sdk/lib/html/src/dart2js_DOMImplementation.dart
@@ -28,10 +28,6 @@ class _DOMWindowCrossFrame implements Window {
Window get top => _createSafe(JS('Window', '#.top', _window));
// Methods.
- void focus() => JS('void', '#.focus()', _window);
-
- void blur() => JS('void', '#.blur()', _window);
-
void close() => JS('void', '#.close()', _window);
void postMessage(var message, String targetOrigin, [List messagePorts = null]) {
« no previous file with comments | « sdk/lib/html/src/CrossFrameTypes.dart ('k') | sdk/lib/html/src/native_DOMImplementation.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698