Sign in
◑
Theme
chromium
/
external
/
github.com
/
WebKit
/
webkit
/
44c202a8ebfbe4dd35cd09c939a499d5ea0c151b
/
.
/
Tools
/
TestWebKitAPI
/
Resources
/
cocoa
/
beforeunload-slow.html
blob: fa6194366aa8912cc090e765490d36c4898239d4 [
file
]
<!DOCTYPE html>
<html>
<head>
<script>
function
sleep
(
millisecondsToWait
)
{
var
now
=
new
Date
().
getTime
();
while
(
new
Date
().
getTime
()
<
now
+
millisecondsToWait
)
{
}
}
onbeforeunload
=
(
ev
)
=>
{
sleep
(
70
);
}
</script>
</head>
</html>