Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(337)

Unified Diff: content/test/data/infinite_unload.html

Issue 9514016: Fixing a problem, where a hung renderer process is not killed when navigating away (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Final cleanup update. Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/test/data/infinite_beforeunload.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/test/data/infinite_unload.html
diff --git a/content/test/data/infinite_unload.html b/content/test/data/infinite_unload.html
new file mode 100644
index 0000000000000000000000000000000000000000..671250d450074e72ab8dbeb7c79bfa22c3da53da
--- /dev/null
+++ b/content/test/data/infinite_unload.html
@@ -0,0 +1,14 @@
+<html>
+<head>
+ <title>Infinite unload</title>
+</head>
+
+<body>
+<script>
+ window.onunload = function(e) {
+ while(true){}
+ }
+</script>
+</body>
+
+</html>
« no previous file with comments | « content/test/data/infinite_beforeunload.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698