diff options
Diffstat (limited to 'toolkit/components/promiseworker/tests/xpcshell/data')
-rw-r--r-- | toolkit/components/promiseworker/tests/xpcshell/data/chrome.manifest | 1 | ||||
-rw-r--r-- | toolkit/components/promiseworker/tests/xpcshell/data/worker.js | 34 |
2 files changed, 0 insertions, 35 deletions
diff --git a/toolkit/components/promiseworker/tests/xpcshell/data/chrome.manifest b/toolkit/components/promiseworker/tests/xpcshell/data/chrome.manifest deleted file mode 100644 index 9e5dd29b2..000000000 --- a/toolkit/components/promiseworker/tests/xpcshell/data/chrome.manifest +++ /dev/null @@ -1 +0,0 @@ -content promiseworker ./ diff --git a/toolkit/components/promiseworker/tests/xpcshell/data/worker.js b/toolkit/components/promiseworker/tests/xpcshell/data/worker.js deleted file mode 100644 index b4750788b..000000000 --- a/toolkit/components/promiseworker/tests/xpcshell/data/worker.js +++ /dev/null @@ -1,34 +0,0 @@ -/* Any copyright is dedicated to the Public Domain. - * http://creativecommons.org/publicdomain/zero/1.0/ */ - -"use strict"; - -// Trivial worker definition - -importScripts("resource://gre/modules/workers/require.js"); -var PromiseWorker = require("resource://gre/modules/workers/PromiseWorker.js"); - -var worker = new PromiseWorker.AbstractWorker(); -worker.dispatch = function(method, args = []) { - return Agent[method](...args); -}, -worker.postMessage = function(...args) { - self.postMessage(...args); -}; -worker.close = function() { - self.close(); -}; -worker.log = function(...args) { - dump("Worker: " + args.join(" ") + "\n"); -}; -self.addEventListener("message", msg => worker.handleMessage(msg)); - -var Agent = { - bounce: function(...args) { - return args; - }, - - throwError: function(msg, ...args) { - throw new Error(msg); - }, -}; |