mirror of
https://github.com/servo/servo.git
synced 2025-06-24 09:04:33 +01:00
10 lines
241 B
JavaScript
10 lines
241 B
JavaScript
|
|
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()
|