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