Sha256: 1d061a3e887f4738671a5d00cf90bfdf5f79b6174031aae23b2b9a5f8600021f
Contents?: true
Size: 366 Bytes
Versions: 17
Compression:
Stored size: 366 Bytes
Contents
<!DOCTYPE html> <html> <head> <script> function delay_unload() { var start = new Date(); var i = 0; while ((new Date()) - start < 1000){ i = i + 1; }; return null; } window.onbeforeunload = delay_unload; window.onunload = delay_unload; </script> </head> <body> <div>This delays unload by 2 seconds</div> </body> </html>
Version data entries
17 entries across 17 versions & 5 rubygems