summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/workers/semantics/xhr/003.js
blob: 1a9c5a7ee816a95c8bbd8510ea234c917d8df2f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
onconnect = function(e) {
  var xhr = new XMLHttpRequest();
  var log = '';
  var port = e.ports[0];
  var postMessage = port.postMessage;
  xhr.onreadystatechange = function(e) {
    if (this.readyState == 4) {
      if (this.responseXML != null)
        log += 'responseXML was not null. ';
      if (this.responseText && this.responseText != '<x>foo</x>')
        log += 'responseText was ' + this.responseText + ', expected <x>foo</x>. ';
      postMessage.call(port, log);
    }
  }
  xhr.open('GET', '001-1.xml', true);
  xhr.send();
}