summaryrefslogtreecommitdiffstats
path: root/dom/workers/test/bug1132924_worker.js
blob: 2512e7e0127d7096c9d9d467a86561ee2147d0b8 (plain)
1
2
3
4
5
6
7
8
9
10
onmessage = function() {
  var a = new XMLHttpRequest();
  a.open("GET", "empty.html", false);
  a.onreadystatechange = function() {
    if (a.readyState == 4) {
      postMessage(a.response);
    }
  };
  a.send(null);
};