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
|
const { PromptTestUtils } = ChromeUtils.importESModule(
"resource://testing-common/PromptTestUtils.sys.mjs"
);
function pageScript() {
window.addEventListener(
"beforeunload",
function (event) {
var str = "Some text that causes the beforeunload dialog to be shown";
event.returnValue = str;
return str;
},
true
);
}
SpecialPowers.pushPrefEnv({
set: [["dom.require_user_interaction_for_beforeunload", false]],
});
const PAGE_URL =
"data:text/html," +
encodeURIComponent("<script>(" + pageScript.toSource() + ")();</script>");
add_task(async function enableDialogs() {
// The onbeforeunload dialog should appear.
let dialogPromise = PromptTestUtils.waitForPrompt(null, {
modalType: Services.prompt.MODAL_TYPE_CONTENT,
promptType: "confirmEx",
});
let openPagePromise = openPage(true);
let dialog = await dialogPromise;
Assert.ok(true, "Showed the beforeunload dialog.");
await PromptTestUtils.handlePrompt(dialog, { buttonNumClick: 0 });
await openPagePromise;
});
add_task(async function disableDialogs() {
// The onbeforeunload dialog should NOT appear.
await openPage(false);
info("If we time out here, then the dialog was shown...");
});
async function openPage(enableDialogs) {
// Open about:blank in a new tab.
await BrowserTestUtils.withNewTab(
{ gBrowser, url: "about:blank" },
async function (browser) {
// Load the page.
BrowserTestUtils.startLoadingURIString(browser, PAGE_URL);
await BrowserTestUtils.browserLoaded(browser);
// Load the content script in the frame.
let methodName = enableDialogs ? "enableDialogs" : "disableDialogs";
await SpecialPowers.spawn(browser, [methodName], async function (name) {
content.windowUtils[name]();
});
// And then navigate away.
BrowserTestUtils.startLoadingURIString(browser, "http://example.com/");
await BrowserTestUtils.browserLoaded(browser);
}
);
}
|