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