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

Side by Side Diff: chrome/test/data/beforeunload.html

Issue 15742019: Avoid DidStopLoading messages from the old renderer process during a transfer. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix assumption in test Created 7 years, 6 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
1 <html> 1 <html>
2 <head> 2 <head>
3 <title>Loading...</title> 3 <title>Loading...</title>
4 </head>
5 <body onload="attachUnloadListener()">
6 <script> 4 <script>
7 window.onbeforeunload = function(e) { return 'foo'; }; 5 window.onbeforeunload = function(e) { return 'foo'; };
8 </script> 6 </script>
7 </head>
8 <body>
9 <p>Navigate to another page to trigger beforeunload handler.</p> 9 <p>Navigate to another page to trigger beforeunload handler.</p>
10 </body> 10 </body>
11 </html> 11 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698