Chromium Code Reviews| Index: chrome/test/data/infinite_unload.html |
| diff --git a/chrome/test/data/infinite_unload.html b/chrome/test/data/infinite_unload.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..a357a292c4e9de3f3ced6a914e525f28537d16cb |
| --- /dev/null |
| +++ b/chrome/test/data/infinite_unload.html |
| @@ -0,0 +1,14 @@ |
| +<html> |
| +<head> |
| + <title>Infinite beforeunload</title> |
| +</head> |
| + |
| +<body> |
| +<script> |
| + window.onunload = function(e) { |
| + while(true){} |
| + } |
| +</script> |
| +</body> |
| + |
| +</html> |