| Index: chrome/test/data/panels/onbeforeunload.html
|
| diff --git a/chrome/test/data/panels/onbeforeunload.html b/chrome/test/data/panels/onbeforeunload.html
|
| deleted file mode 100644
|
| index 5c36c45e4a40314a1e19afb541e4065ae49e135d..0000000000000000000000000000000000000000
|
| --- a/chrome/test/data/panels/onbeforeunload.html
|
| +++ /dev/null
|
| @@ -1,26 +0,0 @@
|
| -<html>
|
| - <head>
|
| - <script>
|
| - var close_call_num = 1;
|
| - var title_first_close = "TitleFirstClose";
|
| - var title_second_close = "TitleSecondClose";
|
| -
|
| - function changeTitle() {
|
| - if (close_call_num == 1)
|
| - document.title = title_first_close;
|
| - else if (close_call_num == 2)
|
| - document.title = title_second_close;
|
| - close_call_num++;
|
| - }
|
| -
|
| - window.onbeforeunload = function() {
|
| - if (close_call_num <= 2)
|
| - setTimeout("changeTitle()", 0);
|
| - return "some random string";
|
| - }
|
| - </script>
|
| - </head>
|
| - <body>
|
| - OnBeforeUnloadHandler In Panels.
|
| - </body>
|
| -</html>
|
|
|