summaryrefslogtreecommitdiffstats
path: root/browser/base/content/test/popups/browser_popup_close_main_window.js
blob: 148e937bca3c873fe573b12819f5bd07095d1fca (plain)
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
/* Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

function muffleMainWindowType() {
  let oldWinType = document.documentElement.getAttribute("windowtype");
  // Check if we've already done this to allow calling multiple times:
  if (oldWinType != "navigator:testrunner") {
    // Make the main test window not count as a browser window any longer
    document.documentElement.setAttribute("windowtype", "navigator:testrunner");

    registerCleanupFunction(() => {
      document.documentElement.setAttribute("windowtype", oldWinType);
    });
  }
}

/**
 * Check that if we close the 1 remaining window, we treat it as quitting on
 * non-mac.
 *
 * Sets the window type for the main browser test window to something else to
 * avoid having to actually close the main browser window.
 */
add_task(async function closing_last_window_equals_quitting() {
  if (navigator.platform.startsWith("Mac")) {
    ok(true, "Not testing on mac");
    return;
  }
  muffleMainWindowType();

  let observed = 0;
  function obs() {
    observed++;
  }
  Services.obs.addObserver(obs, "browser-lastwindow-close-requested");
  let newWin = await BrowserTestUtils.openNewBrowserWindow();
  let closedPromise = BrowserTestUtils.windowClosed(newWin);
  newWin.BrowserTryToCloseWindow();
  await closedPromise;
  is(observed, 1, "Got a notification for closing the normal window.");
  Services.obs.removeObserver(obs, "browser-lastwindow-close-requested");
});

/**
 * Check that if we close the 1 remaining window and also have a popup open,
 * we don't treat it as quitting.
 *
 * Sets the window type for the main browser test window to something else to
 * avoid having to actually close the main browser window.
 */
add_task(async function closing_last_window_equals_quitting() {
  if (navigator.platform.startsWith("Mac")) {
    ok(true, "Not testing on mac");
    return;
  }
  muffleMainWindowType();
  let observed = 0;
  function obs() {
    observed++;
  }
  Services.obs.addObserver(obs, "browser-lastwindow-close-requested");
  let newWin = await BrowserTestUtils.openNewBrowserWindow();
  let popupPromise = BrowserTestUtils.waitForNewWindow("https://example.com/");
  SpecialPowers.spawn(newWin.gBrowser.selectedBrowser, [], function () {
    content.open("https://example.com/", "_blank", "height=500");
  });
  let popupWin = await popupPromise;
  let closedPromise = BrowserTestUtils.windowClosed(newWin);
  newWin.BrowserTryToCloseWindow();
  await closedPromise;
  is(observed, 0, "Got no notification for closing the normal window.");

  closedPromise = BrowserTestUtils.windowClosed(popupWin);
  popupWin.BrowserTryToCloseWindow();
  await closedPromise;
  is(
    observed,
    0,
    "Got no notification now that we're closing the last window, as it's a popup."
  );
  Services.obs.removeObserver(obs, "browser-lastwindow-close-requested");
});