diff options
author | Matt A. Tobin <email@mattatobin.com> | 2018-02-10 02:51:36 -0500 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2018-02-10 02:51:36 -0500 |
commit | 37d5300335d81cecbecc99812747a657588c63eb (patch) | |
tree | 765efa3b6a56bb715d9813a8697473e120436278 /addon-sdk/source/test/test-window-events.js | |
parent | b2bdac20c02b12f2057b9ef70b0a946113a00e00 (diff) | |
parent | 4fb11cd5966461bccc3ed1599b808237be6b0de9 (diff) | |
download | UXP-37d5300335d81cecbecc99812747a657588c63eb.tar UXP-37d5300335d81cecbecc99812747a657588c63eb.tar.gz UXP-37d5300335d81cecbecc99812747a657588c63eb.tar.lz UXP-37d5300335d81cecbecc99812747a657588c63eb.tar.xz UXP-37d5300335d81cecbecc99812747a657588c63eb.zip |
Merge branch 'ext-work'
Diffstat (limited to 'addon-sdk/source/test/test-window-events.js')
-rw-r--r-- | addon-sdk/source/test/test-window-events.js | 63 |
1 files changed, 0 insertions, 63 deletions
diff --git a/addon-sdk/source/test/test-window-events.js b/addon-sdk/source/test/test-window-events.js deleted file mode 100644 index 19580f42a..000000000 --- a/addon-sdk/source/test/test-window-events.js +++ /dev/null @@ -1,63 +0,0 @@ -/* 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"; - -// Opening new windows in Fennec causes issues -module.metadata = { - engines: { - 'Firefox': '*' - } -}; - -const { Loader } = require("sdk/test/loader"); -const { open, getMostRecentBrowserWindow, getOuterId } = require("sdk/window/utils"); - -exports["test browser events"] = function(assert, done) { - let loader = Loader(module); - let { events } = loader.require("sdk/window/events"); - let { on, off } = loader.require("sdk/event/core"); - let actual = []; - - on(events, "data", function handler(e) { - actual.push(e); - - if (e.type === "open") { - assert.pass("window open has occured"); - } - else if (e.type === "DOMContentLoaded") { - assert.pass("window DOMContentLoaded has occured"); - } - else if (e.type === "load") { - assert.pass("window load has occured"); - window.close(); - } - else if (e.type === "close") { - // confirm the ordering of events - let [ open, ready, load, close ] = actual; - assert.equal(open.type, "open") - assert.equal(open.target, window, "window is open") - - assert.equal(ready.type, "DOMContentLoaded") - assert.equal(ready.target, window, "window ready") - - assert.equal(load.type, "load") - assert.equal(load.target, window, "window load") - - assert.equal(close.type, "close") - assert.equal(close.target, window, "window load") - - // Note: If window is closed right after this GC won't have time - // to claim loader and there for this listener. It's better to remove - // remove listener here to avoid race conditions. - off(events, "data", handler); - loader.unload(); - done(); - } - }); - - // Open window and close it to trigger observers. - let window = open(); -}; - -require("sdk/test").run(exports); |