Chromium Code Reviews| 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> |