summaryrefslogtreecommitdiffstats
path: root/dom/workers/test/xpcshell/data/worker_fileReader.js
blob: b27366d17baca14520b50ce8a2608cd11b02d956 (plain)
1
2
3
4
5
6
7
8
/* 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");
};