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

Unified Diff: sdk/lib/html/dart2js/html_dart2js.dart

Issue 11280077: Removed Window.focus and Window.blur as they are no longer recommended. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Removed from localwindow, too. 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 | « no previous file | sdk/lib/html/dartium/html_dartium.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/html/dart2js/html_dart2js.dart
diff --git a/sdk/lib/html/dart2js/html_dart2js.dart b/sdk/lib/html/dart2js/html_dart2js.dart
index 1e7dbf5fa96bc75507f4e563d35361907988d63a..3ca29f9685805156e7a10505c97ec256dba6bfef 100644
--- a/sdk/lib/html/dart2js/html_dart2js.dart
+++ b/sdk/lib/html/dart2js/html_dart2js.dart
@@ -12120,9 +12120,6 @@ class LocalWindow extends EventTarget implements Window native "@*DOMWindow" {
/** @domName Window.atob */
String atob(String string) native;
- /** @domName Window.blur */
- void blur() native;
-
/** @domName Window.btoa */
String btoa(String string) native;
@@ -12147,9 +12144,6 @@ class LocalWindow extends EventTarget implements Window native "@*DOMWindow" {
/** @domName Window.find */
bool find(String string, bool caseSensitive, bool backwards, bool wrap, bool wholeWord, bool searchInFrames, bool showDialog) native;
- /** @domName Window.focus */
- void focus() native;
-
/** @domName Window.getComputedStyle */
CSSStyleDeclaration $dom_getComputedStyle(Element element, String pseudoElement) native "getComputedStyle";
@@ -22153,8 +22147,6 @@ abstract class Window {
Window get top;
// Methods.
- void focus();
- void blur();
void close();
void postMessage(var message, String targetOrigin, [List messagePorts = null]);
}
« no previous file with comments | « no previous file | sdk/lib/html/dartium/html_dartium.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698