| Index: tools/dom/templates/html/impl/impl_Window.darttemplate
|
| diff --git a/tools/dom/templates/html/impl/impl_Window.darttemplate b/tools/dom/templates/html/impl/impl_Window.darttemplate
|
| index 1748306ed71ea54a182e47ee965c6012e5b8238d..70ff5d0633cb0686c8ed797e7d14f62548031ba3 100644
|
| --- a/tools/dom/templates/html/impl/impl_Window.darttemplate
|
| +++ b/tools/dom/templates/html/impl/impl_Window.darttemplate
|
| @@ -277,6 +277,10 @@ $!MEMBERS
|
| @DomName('DOMWindow.onbeforeunload')
|
| @DocsEditable()
|
| Stream<Event> get onBeforeUnload => beforeUnloadEvent.forTarget(this);
|
| +
|
| + void moveTo(Point p) => $dom_moveTo(p.x, p.y);
|
| + int get screenX() => Device.isIE ? $dom_screenLeft : $dom_screenX;
|
| + int get screenY() => Device.isIE ? $dom_screenTop : $dom_screenY;
|
| }
|
|
|
| /**
|
|
|