summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/xhr/resources/workerxhr-simple.js
blob: 9bae5a5cabd34c9e038fe8365f9496508079f84b (plain)
1
2
3
4
5
6
7
8
9
var xhr=new XMLHttpRequest()
xhr.onreadystatechange = function(){
  if(xhr.readyState == 4){
    var status = xhr.responseText === 'bottom\n' ? 'PASSED' : 'FAILED'
    self.postMessage(status)
  }
}
xhr.open('GET', 'folder.txt', true)
xhr.send()