blob: 440002ab76d36c9ad944a2007c535a98b2d24c45 [file] [log] [blame]
/*
* Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
* for details. All rights reserved. Use of this source code is governed by a
* BSD-style license that can be found in the LICENSE file.
*/
/**
* @assertion void moveTo(Point p)
* Moves this window to a specific position.
* x and y can be negative.
* @description Checks that x and y can be negative.
* @issue #16928
*/
import "dart:html";
import "dart:math";
import "../../../UtilsHtml/expect.dart";
main() {
Window nw = window.open("about:blank", "_blank");
int nx = -100, ny = -100;
try {
print("from ${nw.screenLeft}:${nw.screenTop} to $nx, $ny");
nw.moveTo(new Point(nx, ny));
print("after moveTo: ${nw.screenLeft}:${nw.screenTop}");
Expect.equals(nx, nw.screenLeft);
Expect.equals(ny, nw.screenTop);
} finally {
nw.close();
}
}