summaryrefslogtreecommitdiffstats
path: root/toolkit/components/pdfjs/test/browser_pdfjs_caret_browsing_mode.js
blob: a7b2a518d9be86bb8c4c015f1bb439c7b0036013 (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
/* Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/publicdomain/zero/1.0/ */

const RELATIVE_DIR = "toolkit/components/pdfjs/test/";
const TESTROOT = "https://example.com/browser/" + RELATIVE_DIR;
const pdfUrl = TESTROOT + "file_pdfjs_test.pdf";
const caretBrowsingModePref = "accessibility.browsewithcaret";

// Test telemetry.
add_task(async function test() {
  let mimeService = Cc["@mozilla.org/mime;1"].getService(Ci.nsIMIMEService);
  let handlerInfo = mimeService.getFromTypeAndExtension(
    "application/pdf",
    "pdf"
  );

  // Make sure pdf.js is the default handler.
  is(
    handlerInfo.alwaysAskBeforeHandling,
    false,
    "pdf handler defaults to always-ask is false"
  );
  is(
    handlerInfo.preferredAction,
    Ci.nsIHandlerInfo.handleInternally,
    "pdf handler defaults to internal"
  );

  info("Pref action: " + handlerInfo.preferredAction);

  await BrowserTestUtils.withNewTab(
    { gBrowser, url: "about:blank" },
    async function test_caret_browsing_mode(browser) {
      await waitForPdfJS(browser, pdfUrl);

      let promise = BrowserTestUtils.waitForContentEvent(
        browser,
        "updatedPreference",
        false,
        null,
        true
      );
      await SpecialPowers.pushPrefEnv({
        set: [[caretBrowsingModePref, true]],
      });
      await promise;
      await TestUtils.waitForTick();

      await SpecialPowers.spawn(browser, [], async function () {
        const viewer = content.wrappedJSObject.PDFViewerApplication;
        Assert.ok(
          viewer.supportsCaretBrowsingMode,
          "Caret browsing mode is supported"
        );
      });

      promise = BrowserTestUtils.waitForContentEvent(
        browser,
        "updatedPreference",
        false,
        null,
        true
      );
      await SpecialPowers.popPrefEnv();
      await promise;
      await TestUtils.waitForTick();

      await SpecialPowers.spawn(browser, [], async function () {
        const viewer = content.wrappedJSObject.PDFViewerApplication;
        Assert.ok(
          !viewer.supportsCaretBrowsingMode,
          "Caret browsing mode isn't supported"
        );
      });

      await SpecialPowers.spawn(browser, [], async function () {
        const viewer = content.wrappedJSObject.PDFViewerApplication;
        await viewer.close();
      });
    }
  );
});