Sign in
cobalt
/
cobalt.git
/
56d7c4e1a836a7ef6e2823bffb8d1567758b82eb
/
.
/
third_party
/
web_platform_tests
/
XMLHttpRequest
/
resources
/
workerxhr-simple.js
blob: f6bcec0befa6e98efa57c57babda722e7da9606c [
file
]
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
()