OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "chrome/browser/defaults.h" |
| 6 #include "chrome/browser/browser.h" |
| 7 #include "chrome/browser/browser_window.h" |
| 8 #include "chrome/browser/tab_contents/tab_contents.h" |
| 9 #include "chrome/test/in_process_browser_test.h" |
| 10 #include "chrome/test/ui_test_utils.h" |
| 11 |
| 12 typedef InProcessBrowserTest SessionRestoreTest; |
| 13 |
| 14 // Makes sure when session restore is triggered in the same process we don't end |
| 15 // up with an extra tab. |
| 16 IN_PROC_BROWSER_TEST_F(SessionRestoreTest, |
| 17 RestoreOnNewWindowWithNoTabbedBrowsers) { |
| 18 if (browser_defaults::kRestorePopups) |
| 19 return; |
| 20 |
| 21 GURL url(ui_test_utils::GetTestUrl(L".", L"title1.html")); |
| 22 ui_test_utils::NavigateToURL(browser(), url); |
| 23 |
| 24 // Turn on session restore. |
| 25 SessionStartupPref::SetStartupPref( |
| 26 browser()->profile(), |
| 27 SessionStartupPref(SessionStartupPref::LAST)); |
| 28 |
| 29 // Create a new popup. |
| 30 Profile* profile = browser()->profile(); |
| 31 Browser* popup = Browser::CreateForPopup(profile); |
| 32 popup->window()->Show(); |
| 33 |
| 34 // Close the browser. |
| 35 browser()->window()->Close(); |
| 36 |
| 37 // Create a new window, which should trigger session restore. |
| 38 popup->NewWindow(); |
| 39 |
| 40 Browser* new_browser = ui_test_utils::WaitForNewBrowser(); |
| 41 |
| 42 EXPECT_TRUE(new_browser != NULL); |
| 43 |
| 44 // The browser should only have one tab. |
| 45 EXPECT_EQ(1, new_browser->tab_count()); |
| 46 |
| 47 // And the first url should be url. |
| 48 EXPECT_EQ(url, new_browser->GetTabContentsAt(0)->GetURL()); |
| 49 } |
OLD | NEW |