fune/layout/base/tests/browser_visual_viewport_iframe.js
Botond Ballo fea611dcac Bug 1771822 - Do not explicitly set apz.allow_zooming in mochitests. r=tnikkel
We can't do likewise for reftests and web platform tests because
those test suites disable apz.allow_zooming by default on android.

Differential Revision: https://phabricator.services.mozilla.com/D151576
2022-07-12 06:49:11 +00:00

59 lines
1.6 KiB
JavaScript

"use strict";
add_task(async () => {
function httpURL(filename, host = "https://example.com/") {
let root = getRootDirectory(gTestPath).replace(
"chrome://mochitests/content/",
host
);
return root + filename;
}
await SpecialPowers.pushPrefEnv({
set: [["dom.meta-viewport.enabled", true]],
});
const fissionWindow = await BrowserTestUtils.openNewBrowserWindow({
fission: true,
});
const url = httpURL(
"test_visual_viewport_in_oopif.html",
"http://mochi.test:8888/"
);
const crossOriginIframeUrl = httpURL("visual_viewport_in_child.html");
try {
await BrowserTestUtils.withNewTab(
{ gBrowser: fissionWindow.gBrowser, url },
async browser => {
await SpecialPowers.spawn(
browser,
[crossOriginIframeUrl],
async iframeUrl => {
const iframe = content.document.getElementById("iframe");
iframe.setAttribute("src", iframeUrl);
let { width, height } = await new Promise(resolve => {
content.window.addEventListener("message", msg => {
resolve(msg.data);
});
});
is(
width,
300,
"visualViewport.width shouldn't be affected in out-of-process iframes"
);
is(
height,
300,
"visualViewport.height shouldn't be affected in out-of-process iframes"
);
}
);
}
);
} finally {
await BrowserTestUtils.closeWindow(fissionWindow);
}
});