summaryrefslogtreecommitdiffstats
path: root/dom/workers/test/xpcshell/data/worker_fileReader.js
blob: 44e7e6499bd5ccdfc69949053d4d5f997000fe01 (plain)
1
2
3
4
5
6
7
/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */

self.onmessage = function (msg) {
  var fr = new FileReader();
  self.postMessage("OK");
};