Test for bug 429954.

--HG--
extra : rebase_source : 7e46940aa021a01fcfdbba2d6c69f0b579f15c7d
This commit is contained in:
Markus Stange 2009-11-02 20:37:40 +01:00
parent 452e29ce22
commit 685763009a
3 changed files with 96 additions and 0 deletions

View File

@ -56,6 +56,8 @@ endif
include $(topsrcdir)/config/rules.mk
_TEST_FILES = test_bug343416.xul \
test_bug429954.xul \
window_bug429954.xul \
test_bug444800.xul \
test_bug462106.xul \
test_bug478536.xul \

View File

@ -0,0 +1,49 @@
<?xml version="1.0"?>
<?xml-stylesheet href="chrome://global/skin" type="text/css"?>
<?xml-stylesheet href="chrome://mochikit/content/tests/SimpleTest/test.css"
type="text/css"?>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=429954
-->
<window title="Mozilla Bug 429954"
xmlns:html="http://www.w3.org/1999/xhtml"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<title>Test for Bug 429954</title>
<script type="application/javascript"
src="chrome://mochikit/content/MochiKit/packed.js"></script>
<script type="application/javascript"
src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js" />
<body xmlns="http://www.w3.org/1999/xhtml">
<div id="content" style="display: none">
</div>
<pre id="test">
</pre>
</body>
<script class="testbody" type="application/javascript">
<![CDATA[
SimpleTest.waitForExplicitFinish();
SimpleTest.waitForFocus(function () {
var wm = Components.classes["@mozilla.org/appshell/window-mediator;1"].
getService(Components.interfaces.nsIWindowMediator);
var win = wm.getMostRecentWindow("navigator:browser");
win.maximize();
var maxX = win.screenX, maxY = win.screenY;
var maxWidth = win.outerWidth, maxHeight = win.outerHeight;
win.restore();
window.open("window_bug429954.xul", "_blank",
"chrome,resizable,width=" + maxWidth + ",height=" + maxHeight +
"screenX=" + maxX + "screenY=" + maxY);
});
]]>
</script>
</window>

View File

@ -0,0 +1,45 @@
<?xml version="1.0"?>
<?xml-stylesheet href="chrome://global/skin" type="text/css"?>
<window title="Mozilla Bug 478536"
onload="start();"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<script type="application/javascript"
src="chrome://mochikit/content/tests/SimpleTest/EventUtils.js" />
<body xmlns="http://www.w3.org/1999/xhtml" id="body">
</body>
<script class="testbody" type="application/javascript">
<![CDATA[
function ok(aCondition, aMessage)
{
window.opener.wrappedJSObject.SimpleTest.ok(aCondition, aMessage);
}
function is(aLeft, aRight, aMessage)
{
window.opener.wrappedJSObject.SimpleTest.is(aLeft, aRight, aMessage);
}
function isnot(aLeft, aRight, aMessage)
{
window.opener.wrappedJSObject.SimpleTest.isnot(aLeft, aRight, aMessage);
}
function start() {
var oldWidth = window.outerWidth, oldHeight = window.outerHeight;
window.maximize();
window.restore();
is(window.outerWidth, oldWidth, "wrong window width after maximize+restore");
is(window.outerHeight, oldHeight, "wrong window height after maximize+restore");
window.opener.wrappedJSObject.SimpleTest.finish();
window.close();
}
]]>
</script>
</window>