mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-28 23:31:56 +00:00
0a8ff0ad85
# ignore-this-changeset Differential Revision: https://phabricator.services.mozilla.com/D35951 --HG-- extra : source : 62f3501af4bc1c0bd1ee1977a28aee04706a6663
18 lines
417 B
JavaScript
18 lines
417 B
JavaScript
/**
|
|
* Expects a file. Returns an object containing the size, type, name and path
|
|
* using another worker. Used to test posting of file from worker to worker.
|
|
*/
|
|
onmessage = function(event) {
|
|
var worker = new Worker("file_worker.js");
|
|
|
|
worker.postMessage(event.data);
|
|
|
|
worker.onmessage = function(msg) {
|
|
postMessage(msg.data);
|
|
};
|
|
|
|
worker.onerror = function(error) {
|
|
postMessage(undefined);
|
|
};
|
|
};
|