summaryrefslogtreecommitdiffstats
path: root/toolkit/components/windowwatcher/test/browser_new_content_window_from_chrome_principal.js
blob: 28c1c23e605d77d8742f418d908036c4b0b15dd2 (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
"use strict";

/**
 * Tests that if chrome-privileged code calls .open() on an
 * unprivileged window, that the principal in the newly
 * opened window is appropriately set.
 */
add_task(async function test_chrome_opens_window() {
  // This magic value of 2 means that by default, when content tries
  // to open a new window, it'll actually open in a new window instead
  // of a new tab.
  await SpecialPowers.pushPrefEnv({
    set: [["browser.link.open_newwindow", 2]],
  });

  let newWinPromise = BrowserTestUtils.waitForNewWindow({
    url: "https://example.com/",
  });

  await SpecialPowers.spawn(gBrowser.selectedBrowser, [], async function () {
    content.open("https://example.com/", "_blank");
  });

  let win = await newWinPromise;
  let browser = win.gBrowser.selectedBrowser;
  Assert.ok(
    E10SUtils.isWebRemoteType(browser.remoteType),
    "Should have the default content remote type."
  );

  await SpecialPowers.spawn(browser, [], async function () {
    Assert.ok(
      !content.document.nodePrincipal.isSystemPrincipal,
      "We should not have a system principal."
    );
    Assert.equal(
      content.document.nodePrincipal.origin,
      "https://example.com",
      "Should have the example.com principal"
    );
  });

  await BrowserTestUtils.closeWindow(win);
});