summaryrefslogtreecommitdiffstats
path: root/layout/base/tests/browser_onbeforeunload_only_after_interaction_in_frame.js
diff options
context:
space:
mode:
Diffstat (limited to 'layout/base/tests/browser_onbeforeunload_only_after_interaction_in_frame.js')
-rw-r--r--layout/base/tests/browser_onbeforeunload_only_after_interaction_in_frame.js59
1 files changed, 59 insertions, 0 deletions
diff --git a/layout/base/tests/browser_onbeforeunload_only_after_interaction_in_frame.js b/layout/base/tests/browser_onbeforeunload_only_after_interaction_in_frame.js
new file mode 100644
index 000000000..34dbf2308
--- /dev/null
+++ b/layout/base/tests/browser_onbeforeunload_only_after_interaction_in_frame.js
@@ -0,0 +1,59 @@
+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", true]]});
+
+const FRAME_URL =
+ "data:text/html," + encodeURIComponent("<body>Just a frame</body>");
+
+const PAGE_URL =
+ "data:text/html," + encodeURIComponent("<iframe src='" + FRAME_URL + "'></iframe><script>(" + pageScript.toSource() + ")();</script>");
+
+add_task(function* doClick() {
+ // The onbeforeunload dialog should appear.
+ let dialogShown = false;
+ function onDialogShown(node) {
+ dialogShown = true;
+ let dismissButton = node.ui.button0;
+ dismissButton.click();
+ }
+ let obsName = "tabmodal-dialog-loaded";
+ Services.obs.addObserver(onDialogShown, obsName, false);
+ yield* openPage(true);
+ Services.obs.removeObserver(onDialogShown, obsName);
+ Assert.ok(dialogShown, "Should have shown dialog.");
+});
+
+add_task(function* noClick() {
+ // The onbeforeunload dialog should NOT appear.
+ yield openPage(false);
+ info("If we time out here, then the dialog was shown...");
+});
+
+function* openPage(shouldClick) {
+ // Open about:blank in a new tab.
+ yield BrowserTestUtils.withNewTab({ gBrowser, url: "about:blank" }, function* (browser) {
+ // Load the page.
+ yield BrowserTestUtils.loadURI(browser, PAGE_URL);
+ yield BrowserTestUtils.browserLoaded(browser);
+
+ if (shouldClick) {
+ yield BrowserTestUtils.synthesizeMouse(function() {
+ return content.frames[0].document.body;
+ }, 2, 2, {}, browser);
+ }
+ let hasInteractedWith = yield ContentTask.spawn(browser, "", function() {
+ return [content.document.userHasInteracted, content.frames[0].document.userHasInteracted];
+ });
+ is(shouldClick, hasInteractedWith[0], "Click should update parent interactivity state");
+ is(shouldClick, hasInteractedWith[1], "Click should update frame interactivity state");
+ // And then navigate away.
+ yield BrowserTestUtils.loadURI(browser, "http://example.com/");
+ yield BrowserTestUtils.browserLoaded(browser);
+ });
+}