summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/workers/semantics/xhr/support/006-1.js
blob: d446781eb7c1cb0d5e60160fb1fe04f9a188f89c (plain)
1
2
3
4
5
6
7
onconnect = function(e) {
  var xhr = new XMLHttpRequest();
  xhr.open('GET', '001-1.xml', false);
  xhr.send();
  var passed = xhr.responseText == '<x>bar</x>';
  e.ports[0].postMessage(passed);
}