1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163
|
<?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"?>
<window title="Window Minimum and Maximum Size Tests" onload="nextTest()"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
xmlns:html="http://www.w3.org/1999/xhtml">
<script src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"/>
<script src="chrome://mochikit/content/tests/SimpleTest/EventUtils.js"/>
<html:style>
<![CDATA[
panel::part(content) {
border: 0;
padding: 0;
margin: 0;
}
]]>
</html:style>
<panel id="panel" onpopupshown="doPanelTest(this)" onpopuphidden="nextPopupTest(this)"
orient="vertical"
align="start" pack="start" style="appearance: none; margin: 0; border: 0; padding: 0;">
<hbox id="popupresizer" dir="bottomright"
style="width: 60px; height: 60px; appearance: none; margin: 0; border: 0; padding: 0;"/>
</panel>
<script>
<![CDATA[
SimpleTest.waitForExplicitFinish();
var gTestId = -1;
// width and height in the tests below specify the expected size of the window.
// note, win8 has a minimum inner window size of around 122 pixels. Don't go below this on min-width tests.
var tests = [
{ testname: "unconstrained",
src: "windowminmaxsize1.xhtml",
width: 150, height: 150 },
{ testname: "constraint min style",
src: "windowminmaxsize2.xhtml",
width: 180, height: 210 },
{ testname: "constraint max style",
src: "windowminmaxsize3.xhtml",
width: 125, height: 140 },
{ testname: "constraint min attributes",
src: "windowminmaxsize4.xhtml",
width: 240, height: 220 },
{ testname: "constraint min attributes with width and height set",
src: "windowminmaxsize5.xhtml",
width: 215, height: 235 },
{ testname: "constraint max attributes",
src: "windowminmaxsize6.xhtml",
width: 125, height: 95 },
// this gets the inner width as <window minwidth='210'> makes the box 210 pixels wide
{ testname: "constraint min width attribute only",
src: "windowminmaxsize7.xhtml",
width: 210, height: 150 },
{ testname: "constraint max width attribute only",
src: "windowminmaxsize8.xhtml",
width: 128, height: 150 },
{ testname: "constraint max width attribute with minheight",
src: "windowminmaxsize9.xhtml",
width: 195, height: 180 },
{ testname: "constraint minwidth, minheight, maxwidth and maxheight set",
src: "windowminmaxsize10.xhtml",
width: 150, height: 150 }
];
var popupTests = [
{ testname: "popup unconstrained",
width: 60, height: 60
},
{ testname: "popup with minimum size",
minWidth: 150, minHeight: 180,
width: 150, height: 180
},
{ testname: "popup with maximum size",
maxWidth: 50, maxHeight: 45,
width: 50, height: 45,
}
];
function nextTest()
{
info(`Running test ${gTestId}`);
// Run through each of the tests above by opening a simple window with
// the attributes or style defined for that test. The comparisons will be
// done by windowOpened. gTestId holds the index into the tests array.
if (++gTestId >= tests.length) {
// Now do the popup tests
gTestId = -1;
SimpleTest.waitForFocus(function () { nextPopupTest(document.getElementById("panel")) } );
}
else {
info(`opening ${tests[gTestId].src}`);
tests[gTestId].window = window.browsingContext.topChromeWindow.open(tests[gTestId].src, "_blank", "chrome,resizable=yes");
SimpleTest.waitForFocus(windowOpened, tests[gTestId].window);
}
}
function windowOpened(otherWindow)
{
// Check the width and the width plus one due to bug 696746.
ok(otherWindow.innerWidth == tests[gTestId].width ||
otherWindow.innerWidth == tests[gTestId].width + 1,
tests[gTestId].testname + " width of " + otherWindow.innerWidth + " matches " + tests[gTestId].width);
is(otherWindow.innerHeight, tests[gTestId].height, tests[gTestId].testname + " height");
otherWindow.close();
nextTest();
}
function doPanelTest(panel)
{
var rect = panel.getBoundingClientRect();
is(rect.width, popupTests[gTestId].width, popupTests[gTestId].testname + " width");
is(rect.height, popupTests[gTestId].height, popupTests[gTestId].testname + " height");
panel.hidePopup();
}
function nextPopupTest(panel)
{
if (++gTestId >= popupTests.length) {
SimpleTest.finish();
return;
}
function setStyle(attr) {
if (attr in popupTests[gTestId])
panel.style[attr] = popupTests[gTestId][attr] + "px";
else
panel.style[attr] = "";
}
setStyle("minWidth");
setStyle("minHeight");
setStyle("maxWidth");
setStyle("maxHeight");
// Prevent event loop starvation as a result of popup events being
// synchronous. See bug 1131576.
SimpleTest.executeSoon(() => {
// Non-chrome shells require focus to open a popup.
SimpleTest.waitForFocus(() => { panel.openPopup() });
});
}
]]>
</script>
<body xmlns="http://www.w3.org/1999/xhtml">
<p id="display">
</p>
<div id="content" style="display: none">
</div>
<pre id="test">
</pre>
</body>
</window>
|