diff options
Diffstat (limited to 'chrome/test/data/unload/unloadloopingalert.html')
-rw-r--r-- | chrome/test/data/unload/unloadloopingalert.html | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/chrome/test/data/unload/unloadloopingalert.html b/chrome/test/data/unload/unloadloopingalert.html new file mode 100644 index 0000000..dacd9b5 --- /dev/null +++ b/chrome/test/data/unload/unloadloopingalert.html @@ -0,0 +1,10 @@ +<html> +<body> +<script> +window.onunload = function(e) { + while(true) {} + alert('foo'); +} +</script> +</body> +</html>
\ No newline at end of file |