summaryrefslogtreecommitdiffstats
path: root/browser/components/originattributes/test/browser/file_sharedworker.js
blob: ecf0d37a0f3f066346aa946803dfe7ea66914e28 (plain)
1
2
3
4
5
6
7
8
9
self.randomValue = Math.random();

/* eslint-env worker */

onconnect = function (e) {
  let port = e.ports[0];
  port.postMessage(self.randomValue);
  port.start();
};