summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/workers/semantics/encodings/004.js
blob: 5146929a73b5bd711933d1f5170875c4f83b09ae (plain)
1
2
3
4
5
6
7
onconnect = function(e) {
  var xhr = new XMLHttpRequest();
  xhr.open('GET', '003-1.py?x=å', false);
  xhr.send();
  var passed = xhr.responseText == 'PASS';
  e.ports[0].postMessage(passed);
}