summaryrefslogtreecommitdiffstats
path: root/accessible/tests/mochitest/jsat/test_alive.html
blob: cd4eef71212880f0586e572770e3b8a0223ab658 (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
<html>

<head>
  <title>AccessFu test for enabling</title>

  <link rel="stylesheet" type="text/css"
        href="chrome://mochikit/content/tests/SimpleTest/test.css" />
  <script type="application/javascript"
          src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script>
  <script type="application/javascript"
          src="../common.js"></script>
  <script type="application/javascript"
          src="./jsatcommon.js"></script>
  <script type="application/javascript">

    function prefStart() {
      AccessFuTest.once_log("AccessFu:Enabled", () =>
        ok(AccessFu._enabled, "AccessFu was enabled again."));
      AccessFuTest.once_log("EventManager.start", AccessFuTest.nextTest);
      // Start AccessFu via pref.
      SpecialPowers.pushPrefEnv({"set": [['accessibility.accessfu.activate', 1]]});
    }

    // Listen for 'EventManager.stop' and enable AccessFu again.
    function settingsStart() {
      isnot(AccessFu._enabled, true, "AccessFu was disabled.");
      // XXX: Bug 978076 - test start with SettingsManager.
      //navigator.mozSettings.createLock().set(
      //  {'accessibility.screenreader': false});
      AccessFuTest.once_log("EventManager.start", () => {
        ok(AccessFu._enabled, "AccessFu was enabled again.");
        AccessFuTest.nextTest();
      });
      AccessFu._enable();
    }

    // Make sure EventManager is started again.
    function settingsStop() {
      ok(AccessFu._enabled, "AccessFu was enabled again.");
      // XXX: Bug 978076 - test stop with SettingsManager.
      //navigator.mozSettings.createLock().set(
      //  {'accessibility.screenreader': false});
      AccessFuTest.once_log("EventManager.stop", () => {
        isnot(AccessFu._enabled, "AccessFu was disabled.");
        AccessFuTest.finish();
      });
      AccessFu._disable();
    }

    // Listen for initial 'EventManager.start' and disable AccessFu.
    function prefStop() {
      ok(AccessFu._enabled, "AccessFu was started via preference.");
      AccessFuTest.once_log("AccessFu:Disabled", () =>
        isnot(AccessFu._enabled, true, "AccessFu was disabled."));
      AccessFuTest.once_log("EventManager.stop", AccessFuTest.nextTest);

      SpecialPowers.pushPrefEnv({"set": [['accessibility.accessfu.activate', 0]]});
    }

    function doTest() {
      AccessFuTest.addFunc(prefStart);
      AccessFuTest.addFunc(prefStop);
      AccessFuTest.addFunc(settingsStart);
      AccessFuTest.addFunc(settingsStop);
      AccessFuTest.waitForExplicitFinish();
      AccessFuTest.runTests();  // Will call SimpleTest.finish();
    }

    SimpleTest.waitForExplicitFinish();
    addA11yLoadEvent(doTest);
  </script>

</head>
<body>
  <a target="_blank"
     href="https://bugzilla.mozilla.org/show_bug.cgi?id=811307"
     title="[AccessFu] Add mochitest for enabling">
    Mozilla Bug 811307
  </a>
</body>
</html>