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