mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-04 16:15:25 +00:00
18 lines
419 B
JavaScript
18 lines
419 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(event) {
|
|
postMessage(event.data);
|
|
}
|
|
|
|
worker.onerror = function(event) {
|
|
postMessage(undefined);
|
|
}
|
|
};
|