Sign in
webkit
/
WebKit
/
ccf8f7cdbfbfa46d99c5a9dcfbbf6cb2e9ec8c2c
/
.
/
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>