| 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 fbe12b7ebf314a721ad55c8fcbc70f4d5087a426..d308ceb4ddacf7cd9fb6dc6578525ba7b8cd8ba1 100644
|
| --- a/sdk/lib/html/dartium/html_dartium.dart
|
| +++ b/sdk/lib/html/dartium/html_dartium.dart
|
| @@ -25484,7 +25484,7 @@ class Window extends EventTarget implements WindowBase {
|
|
|
| @DomName('Window.moveTo')
|
| @DocsEditable()
|
| - void moveTo(num x, num y) native "DOMWindow_moveTo_Callback";
|
| + void $dom_moveTo(num x, num y) native "DOMWindow_moveTo_Callback";
|
|
|
| @DomName('Window.open')
|
| @DocsEditable()
|
| @@ -25839,6 +25839,10 @@ class Window extends EventTarget implements WindowBase {
|
| @DomName('DOMWindow.onbeforeunload')
|
| @DocsEditable()
|
| Stream<Event> get onBeforeUnload => beforeUnloadEvent.forTarget(this);
|
| +
|
| + void moveTo(Point p) {
|
| + $dom_moveTo(p.x, p.y);
|
| + }
|
| }
|
|
|
| /**
|
|
|