blob: 18f32eab30eff78a29932b17a6822f20d59d5de8 (
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
|
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
"use strict";
const { keyPress } = require("sdk/dom/events/keys");
const { Loader } = require("sdk/test/loader");
const timer = require("sdk/timers");
exports["test unload keyboard observer"] = function(assert, done) {
let loader = Loader(module);
let element = loader.require("sdk/deprecated/window-utils").
activeBrowserWindow.document.documentElement;
let observer = loader.require("sdk/keyboard/observer").
observer;
let called = 0;
observer.on("keypress", function () { called++; });
// dispatching "keypress" event to trigger observer listeners.
keyPress(element, "accel-%");
// Unload the module.
loader.unload();
// dispatching "keypress" even once again.
keyPress(element, "accel-%");
// Enqueuing asserts to make sure that assertion is not performed early.
timer.setTimeout(function () {
assert.equal(called, 1, "observer was called before unload only.");
done();
}, 0);
};
require("sdk/test").run(exports);
|