Sign in
webkit
/
WebKit
/
2b71a063dee544906d04b3c4fb19abae128a0dfd
/
.
/
LayoutTests
/
http
/
tests
/
navigation
/
resources
/
frame-pagehide-starts-load.html
blob: 8302e8084efdc76d70ff5a625c6467c7c9d41727 [
file
] [
log
] [
blame
]
<!DOCTYPE html>
<html>
<body>
<script>
window
.
addEventListener
(
"pagehide"
,
function
(
event
)
{
var
xhr
=
new
XMLHttpRequest
();
xhr
.
open
(
"GET"
,
"resources/slow-resource.pl?delay=3000"
,
true
);
xhr
.
send
();
},
false
);
</script>
</body>
</html>