summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/workers/semantics/xhr/support/005-1.js
blob: 45f6519a2104f8b2e3b1ccaa79182bc021bf3db6 (plain)
1
2
3
4
5
var xhr = new XMLHttpRequest();
xhr.open('GET', '001-1.xml', false);
xhr.send();
var passed = xhr.responseText == '<x>bar</x>';
postMessage(passed);