summaryrefslogtreecommitdiffstats
path: root/dom/workers/test/worker_referrer.js
blob: e8cdd8a19ce00c4dc0738af254d8215b061184ea (plain)
1
2
3
4
5
6
7
8
9
onmessage = function() {
  importScripts(["referrer.sjs?import"]);
  var xhr = new XMLHttpRequest();
  xhr.open("GET", "referrer.sjs?result", true);
  xhr.onload = function() {
    postMessage(xhr.responseText);
  };
  xhr.send();
};