summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/workers/support/sync_xhr.js
blob: 5de74765373876ef77b2ab5b8addffaa33e7e045 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
try
{
  const request = new XMLHttpRequest();
  request.open("GET", "sync_xhr_target.xml", false);
  request.send();
  result = request.responseText == "<foo>sometext</foo>\n" ? "Pass" : "Fail";
  postMessage(result);
}
catch(ex)
{
  result = "Fail";
  postMessage(result);
}