summaryrefslogtreecommitdiffstats
path: root/comm/mail/components/enterprisepolicies/tests/browser/browser_policy_disable_safemode.js
blob: 3ce719b5f18d796e1f25b6856bf17df9657be871 (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
/* Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";

add_setup(async function () {
  await setupPolicyEngineWithJson({
    policies: {
      DisableSafeMode: true,
    },
  });
});

add_task(async function test_help_menu() {
  buildHelpMenu();
  let safeModeMenu = document.getElementById("helpTroubleshootMode");
  is(
    safeModeMenu.getAttribute("disabled"),
    "true",
    "The `Restart with Add-ons Disabled...` item should be disabled"
  );
  let safeModeAppMenu = document.getElementById("appmenu_troubleshootMode");
  is(
    safeModeAppMenu.getAttribute("disabled"),
    "true",
    "The `Restart with Add-ons Disabled...` appmenu item should be disabled"
  );
});

add_task(async function test_safemode_from_about_support() {
  await withNewTab({ url: "about:support" }, browser => {
    let button = content.document.getElementById("restart-in-safe-mode-button");
    is(
      button.getAttribute("disabled"),
      "true",
      "The `Restart with Add-ons Disabled...` button should be disabled"
    );
  });
});

add_task(async function test_safemode_from_about_profiles() {
  await withNewTab({ url: "about:profiles" }, browser => {
    let button = content.document.getElementById("restart-in-safe-mode-button");
    is(
      button.getAttribute("disabled"),
      "true",
      "The `Restart with Add-ons Disabled...` button should be disabled"
    );
  });
});