summaryrefslogtreecommitdiffstats
path: root/browser/base/content/test/general/browser_bug495058.js
blob: 95a444bf6a342921ea8f017165eb9e9b425d761f (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
/**
 * Tests that the right elements of a tab are focused when it is
 * torn out into its own window.
 */

const URIS = [
  "about:blank",
  "about:home",
  "about:sessionrestore",
  "about:privatebrowsing",
];

add_task(async function () {
  for (let uri of URIS) {
    let tab = BrowserTestUtils.addTab(gBrowser);
    BrowserTestUtils.loadURIString(tab.linkedBrowser, uri);
    await BrowserTestUtils.browserLoaded(tab.linkedBrowser);
    let isRemote = tab.linkedBrowser.isRemoteBrowser;

    let win = gBrowser.replaceTabWithWindow(tab);

    await TestUtils.topicObserved(
      "browser-delayed-startup-finished",
      subject => subject == win
    );
    // In the e10s case, we wait for the content to first paint before we focus
    // the URL in the new window, to optimize for content paint time.
    if (isRemote) {
      await win.gBrowserInit.firstContentWindowPaintPromise;
    }

    tab = win.gBrowser.selectedTab;

    Assert.equal(
      win.gBrowser.currentURI.spec,
      uri,
      uri + ": uri loaded in detached tab"
    );

    const expectedActiveElement = tab.isEmpty
      ? win.gURLBar.inputField
      : win.gBrowser.selectedBrowser;
    Assert.equal(
      win.document.activeElement,
      expectedActiveElement,
      `${uri}: the active element is expected: ${win.document.activeElement?.nodeName}`
    );
    Assert.equal(win.gURLBar.value, "", uri + ": urlbar is empty");
    Assert.ok(win.gURLBar.placeholder, uri + ": placeholder text is present");

    await BrowserTestUtils.closeWindow(win);
  }
});