Sign in
webkit
/
WebKit
/
2538ba1dc66c1a9ab694bc167c5d56293dae7e8e
/
.
/
LayoutTests
/
http
/
tests
/
misc
/
resources
/
send-async-xhr.html
blob: c0cf0353aed80a7f79de8c877c2357cdff6b5df1 [
file
] [
log
] [
blame
]
<script>
var
req
=
new
XMLHttpRequest
();
req
.
open
(
"GET"
,
"hang-connection.py"
,
true
);
req
.
onload
=
parent
.
requestLoaded
;
req
.
send
(
null
);
parent
.
requestSent
();
</script>