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

Side by Side Diff: content/test/data/infinite_unload.html

Issue 10008015: 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: Fixed problems when navigating to page that doesn't involve network IO. Created 8 years, 8 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <html>
2 <head>
3 <title>Infinite unload</title>
4 </head>
5
6 <body>
7 <script>
8 window.onunload = function(e) {
9 while(true){}
10 }
11 </script>
12
13 Infinite unload handler.
14
15 </body>
16
17 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698