* fast/dom/Window/window-resize-and-move-arguments.html: Make the window small enough
that this test won't fail on systems with lower resolutions.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@28571
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2007-12-08 Sam Weinig <sam@webkit.org>
+
+ Rubber-stamped by Adam Roben.
+
+ * fast/dom/Window/window-resize-and-move-arguments.html: Make the window small enough
+ that this test won't fail on systems with lower resolutions.
+
2007-12-08 Oliver Hunt <oliver@apple.com>
Reviewed by Sam W.
function reset()
{
- window.moveTo(0,0);
- window.resizeTo(800,600);
+ window.moveTo(0, 0);
+ window.resizeTo(300, 200);
resetWidth = window.outerWidth;
resetHeight = window.outerHeight;
resetX = window.screenX;
window.moveBy(x, y, 200, "text");
shouldBe('window.screenX', 'resetX + x');
shouldBe('window.screenY', 'resetY + y');
-
- reset();
-
+
var successfullyParsed = true;
</script>
<script src="../../js/resources/js-test-post.js"></script>