gecko-dev/dom/workers/test/file_worker.js
Andrea Marchesini fe7079bf0c Bug 793460 - Implement File.lastModifiedDate. r=khuey
--HG--
extra : rebase_source : 6ca1c139896f47de428a430e731d39125a0f0435
2012-11-04 07:19:00 -08:00

17 lines
373 B
JavaScript

/**
* Expects a file. Returns an object containing the size, type, name and path.
*/
onmessage = function(event) {
var file = event.data;
var rtnObj = new Object();
rtnObj.size = file.size;
rtnObj.type = file.type;
rtnObj.name = file.name;
rtnObj.lastModifiedDate = file.lastModifiedDate;
rtnObj.mozFullPath = file.mozFullPath;
postMessage(rtnObj);
};