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

Side by Side Diff: content/test/data/prompt_beforeunload_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: Fixes based on feedback and new test 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>Prompting beforeunload, infinite unload</title>
4 </head>
5
6 <body>
7 <script>
8 window.onbeforeunload = function(e) {
9 return false;
10 }
11 window.onunload = function(e) {
12 while(true){}
13 }
14 </script>
15
16 Prompting beforeunload with inifite unload.
17
18 </body>
19
20 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698