summaryrefslogtreecommitdiffstats
path: root/browser/base/content/test/general/browser_tab_close_dependent_window.js
blob: ab8a960ac1ad88d6e25ea803354377eb514fa560 (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
"use strict";

add_task(function* closing_tab_with_dependents_should_close_window() {
  info("Opening window");
  let win = yield BrowserTestUtils.openNewBrowserWindow();

  info("Opening tab with data URI");
  let tab = yield BrowserTestUtils.openNewForegroundTab(win.gBrowser, `data:text/html,<html%20onclick="W=window.open()"><body%20onbeforeunload="W.close()">`);
  info("Closing original tab in this window.");
  yield BrowserTestUtils.removeTab(win.gBrowser.tabs[0]);
  info("Clicking into the window");
  let depTabOpened = BrowserTestUtils.waitForEvent(win.gBrowser.tabContainer, "TabOpen");
  yield BrowserTestUtils.synthesizeMouse("html", 0, 0, {}, tab.linkedBrowser);

  let openedTab = (yield depTabOpened).target;
  info("Got opened tab");

  let windowClosedPromise = BrowserTestUtils.windowClosed(win);
  yield BrowserTestUtils.removeTab(tab);
  is(Cu.isDeadWrapper(openedTab) || openedTab.linkedBrowser == null, true, "Opened tab should also have closed");
  info("If we timeout now, the window failed to close - that shouldn't happen!");
  yield windowClosedPromise;
});