summaryrefslogtreecommitdiffstats
path: root/toolkit/components/printing/tests/browser_preview_in_container.js
blob: 21a0d1e6b1fbe5dfa81bb071d84df44aab327143 (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
/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

const TEST_PATH = getRootDirectory(gTestPath).replace(
  "chrome://mochitests/content",
  "https://example.com"
);

async function runTest() {
  is(
    document.querySelector(".printPreviewBrowser"),
    null,
    "There shouldn't be any print preview browser"
  );

  gBrowser.selectedTab = await BrowserTestUtils.addTab(
    gBrowser,
    `${TEST_PATH}file_print.html`,
    { userContextId: 1 }
  );

  // Wait for window.print() to run and ensure we're showing the preview...
  await BrowserTestUtils.waitForCondition(
    () => !!document.querySelector(".printPreviewBrowser")
  );

  let previewBrowser = document.querySelector(".printPreviewBrowser");
  let contentFound = await SpecialPowers.spawn(previewBrowser, [], () => {
    return !!content.document.getElementById("printed");
  });
  ok(contentFound, "We should find the preview content.");
  BrowserTestUtils.removeTab(gBrowser.selectedTab);
}

add_task(async function test_in_container() {
  // window.print() only shows print preview when print.tab_modal.enabled is
  // true.
  await SpecialPowers.pushPrefEnv({
    set: [
      ["print.tab_modal.enabled", true],
      ["privacy.firstparty.isolate", false],
    ],
  });

  await runTest();
});

add_task(async function test_with_fpi() {
  // window.print() only shows print preview when print.tab_modal.enabled is
  // true.
  await SpecialPowers.pushPrefEnv({
    set: [
      ["print.tab_modal.enabled", true],
      ["privacy.firstparty.isolate", true],
    ],
  });
  await runTest();
});