64 lines
1.9 KiB
HTML
64 lines
1.9 KiB
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<title>Test for Bug 1369627</title>
|
|
<script src="/tests/SimpleTest/SimpleTest.js"></script>
|
|
<script src="/tests/SimpleTest/EventUtils.js"></script>
|
|
|
|
|
|
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
|
|
</head>
|
|
<body>
|
|
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1369627">Mozilla Bug 1369627</a>
|
|
<p id="display"></p>
|
|
<div id="content">
|
|
<button id="clicky">clicky</button>
|
|
</div>
|
|
<pre id="test">
|
|
</pre>
|
|
|
|
<script>
|
|
/** Test for Bug 1369627 **/
|
|
add_task(async function resizeby() {
|
|
await SimpleTest.promiseFocus();
|
|
|
|
let clicky = document.querySelector("#clicky");
|
|
|
|
let popupPromise = new Promise(resolve => {
|
|
let linkclick = () => {
|
|
clicky.removeEventListener('click', linkclick);
|
|
let popup = window.open("about:blank", "_blank", "width=500,height=500");
|
|
function loaded() {
|
|
is(popup.innerHeight, 500, "starting height is 500");
|
|
is(popup.innerWidth, 500, "starting width in 500");
|
|
|
|
popup.resizeBy(50, 0);
|
|
|
|
// We resized synchronously. If this happened, we sometimes won't fire
|
|
// an resize event, so we resolve immediately.
|
|
if (popup.innerWidth == 550) {
|
|
resolve(popup);
|
|
return;
|
|
}
|
|
let popupresize = () => {
|
|
info(`Got resize event ${popup.innerWidth}\n`);
|
|
resolve(popup);
|
|
};
|
|
popup.addEventListener('resize', popupresize, { once: true });
|
|
};
|
|
popup.addEventListener("load", loaded, { once: true })
|
|
};
|
|
|
|
clicky.addEventListener('click', linkclick);
|
|
});
|
|
|
|
synthesizeMouseAtCenter(clicky, {}, window);
|
|
|
|
let popup = await popupPromise;
|
|
is(popup.innerHeight, 500, "ending height is 500");
|
|
is(popup.innerWidth, 550, "ending width is 550");
|
|
popup.close();
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|