| Index: sdk/lib/html/dartium/html_dartium.dart
|
| diff --git a/sdk/lib/html/dartium/html_dartium.dart b/sdk/lib/html/dartium/html_dartium.dart
|
| index 30ea8b93349268176c75030ecbca4d3408110daf..65074cc8ffb4525c3851d52d5e8d3f906f2526ff 100644
|
| --- a/sdk/lib/html/dartium/html_dartium.dart
|
| +++ b/sdk/lib/html/dartium/html_dartium.dart
|
| @@ -15636,10 +15636,6 @@ class LocalWindow extends EventTarget implements Window {
|
| String atob(String string) native "DOMWindow_atob_Callback";
|
|
|
|
|
| - /** @domName DOMWindow.blur */
|
| - void blur() native "DOMWindow_blur_Callback";
|
| -
|
| -
|
| /** @domName DOMWindow.btoa */
|
| String btoa(String string) native "DOMWindow_btoa_Callback";
|
|
|
| @@ -15676,10 +15672,6 @@ class LocalWindow extends EventTarget implements Window {
|
| bool find(String string, bool caseSensitive, bool backwards, bool wrap, bool wholeWord, bool searchInFrames, bool showDialog) native "DOMWindow_find_Callback";
|
|
|
|
|
| - /** @domName DOMWindow.focus */
|
| - void focus() native "DOMWindow_focus_Callback";
|
| -
|
| -
|
| /** @domName DOMWindow.getComputedStyle */
|
| CSSStyleDeclaration $dom_getComputedStyle(Element element, String pseudoElement) native "DOMWindow_getComputedStyle_Callback";
|
|
|
| @@ -28669,8 +28661,6 @@ abstract class Window {
|
| Window get top;
|
|
|
| // Methods.
|
| - void focus();
|
| - void blur();
|
| void close();
|
| void postMessage(var message, String targetOrigin, [List messagePorts = null]);
|
| }
|
| @@ -30871,8 +30861,6 @@ class _DOMWindowCrossFrame extends NativeFieldWrapperClass1 implements Window {
|
| Window get top() native "DOMWindow_top_Getter";
|
|
|
| // Methods.
|
| - void focus() native "DOMWindow_focus_Callback";
|
| - void blur() native "DOMWindow_blur_Callback";
|
| void close() native "DOMWindow_close_Callback";
|
| void postMessage(/*SerializedScriptValue*/ message, String targetOrigin, [List messagePorts]) native "DOMWindow_postMessage_Callback";
|
|
|
|
|