blob: fa6194366aa8912cc090e765490d36c4898239d4 [file] [log] [blame]
<!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>