gecko-dev/dom/ipc/tests/file_cancel_content_js.html

20 строки
325 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>while(true)</title>
<script>
</script>
<style>
</style>
</head>
<body>
Try to go back to the initial page.
<script>
const start = Date.now();
setTimeout(function() {
while (Date.now() - start < 3000);
}, 500);
</script>
</body>
</html>