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

Unified 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, 7 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
Index: chrome/test/data/beforeunload.html
diff --git a/chrome/test/data/beforeunload.html b/chrome/test/data/beforeunload.html
index 4abf52afc7ee9841e6a21faf8384a72a8c240c5a..5904abc1af7ea7c4476f56696b1e0d8b622c8de9 100644
--- a/chrome/test/data/beforeunload.html
+++ b/chrome/test/data/beforeunload.html
@@ -1,11 +1,11 @@
<html>
<head>
<title>Loading...</title>
- </head>
- <body onload="attachUnloadListener()">
<script>
window.onbeforeunload = function(e) { return 'foo'; };
</script>
+ </head>
+ <body>
<p>Navigate to another page to trigger beforeunload handler.</p>
</body>
</html>

Powered by Google App Engine
This is Rietveld 408576698