summaryrefslogtreecommitdiffstats
path: root/comm/mail/components/enterprisepolicies/tests/browser/browser_policy_passwordmanager.js
blob: 1f74d4675474aa410c958e9d45bf480992460640 (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
/* Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

add_task(async function test_pwmanagerbutton() {
  await setupPolicyEngineWithJson({
    policies: {
      PasswordManagerEnabled: false,
    },
  });

  window.openPreferencesTab("panePrivacy");
  await BrowserTestUtils.browserLoaded(window.preferencesTabType.tab.browser);
  await new Promise(resolve => setTimeout(resolve));

  is(
    window.preferencesTabType.tab.browser.contentDocument.getElementById(
      "showPasswords"
    ).disabled,
    true,
    "showPasswords should be disabled."
  );

  let tabmail = document.getElementById("tabmail");
  tabmail.closeTab(window.preferencesTabType.tab);
});