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..5a3e017f6815b4ff7d18dbb4d92fc1bef34935bc |
--- /dev/null |
+++ b/content/test/data/infinite_beforeunload.html |
@@ -0,0 +1,17 @@ |
+<html> |
+<head> |
+ <title>Infinite beforeunload</title> |
+</head> |
+ |
+<body> |
+<script> |
+ window.onbeforeunload = function(e) { |
+ while(true){} |
+ } |
+</script> |
+ |
+Infinite beforeunload handler. |
+ |
+</body> |
+ |
+</html> |