OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include <sstream> | 5 #include <sstream> |
6 #include <string> | 6 #include <string> |
7 | 7 |
8 #include "base/command_line.h" | 8 #include "base/command_line.h" |
9 #include "base/file_path.h" | 9 #include "base/file_path.h" |
10 #include "base/path_service.h" | 10 #include "base/path_service.h" |
11 #include "base/string_util.h" | 11 #include "base/string_util.h" |
| 12 #include "base/test/test_timeouts.h" |
12 #include "chrome/browser/net/url_request_failed_dns_job.h" | 13 #include "chrome/browser/net/url_request_failed_dns_job.h" |
13 #include "chrome/browser/net/url_request_mock_http_job.h" | 14 #include "chrome/browser/net/url_request_mock_http_job.h" |
14 #include "chrome/common/url_constants.h" | 15 #include "chrome/common/url_constants.h" |
15 #include "chrome/test/automation/browser_proxy.h" | 16 #include "chrome/test/automation/browser_proxy.h" |
16 #include "chrome/test/automation/tab_proxy.h" | 17 #include "chrome/test/automation/tab_proxy.h" |
17 #include "chrome/test/ui/ui_test.h" | 18 #include "chrome/test/ui/ui_test.h" |
18 #include "net/base/net_util.h" | 19 #include "net/base/net_util.h" |
19 #include "net/test/test_server.h" | 20 #include "net/test/test_server.h" |
20 | 21 |
21 namespace { | 22 namespace { |
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
208 ASSERT_TRUE(browser_proxy.get()); | 209 ASSERT_TRUE(browser_proxy.get()); |
209 scoped_refptr<TabProxy> tab(browser_proxy->GetActiveTab()); | 210 scoped_refptr<TabProxy> tab(browser_proxy->GetActiveTab()); |
210 ASSERT_TRUE(tab.get()); | 211 ASSERT_TRUE(tab.get()); |
211 | 212 |
212 // Cause the renderer to crash. | 213 // Cause the renderer to crash. |
213 #if defined(OS_WIN) || defined(USE_LINUX_BREAKPAD) | 214 #if defined(OS_WIN) || defined(USE_LINUX_BREAKPAD) |
214 expected_crashes_ = 1; | 215 expected_crashes_ = 1; |
215 #endif | 216 #endif |
216 ASSERT_TRUE(tab->NavigateToURLAsync(GURL(chrome::kAboutCrashURL))); | 217 ASSERT_TRUE(tab->NavigateToURLAsync(GURL(chrome::kAboutCrashURL))); |
217 // Wait for browser to notice the renderer crash. | 218 // Wait for browser to notice the renderer crash. |
218 base::PlatformThread::Sleep(sleep_timeout_ms()); | 219 base::PlatformThread::Sleep(TestTimeouts::action_timeout_ms()); |
219 | 220 |
220 // Navigate to a new cross-site page. The browser should not wait around for | 221 // Navigate to a new cross-site page. The browser should not wait around for |
221 // the old renderer's on{before}unload handlers to run. | 222 // the old renderer's on{before}unload handlers to run. |
222 CheckTitleTest(L"content-sniffer-test0.html", | 223 CheckTitleTest(L"content-sniffer-test0.html", |
223 L"Content Sniffer Test 0", 1); | 224 L"Content Sniffer Test 0", 1); |
224 } | 225 } |
225 #endif // !defined(OS_MACOSX) | 226 #endif // !defined(OS_MACOSX) |
226 | 227 |
227 // Tests that cross-site navigations work when the new page does not go through | 228 // Tests that cross-site navigations work when the new page does not go through |
228 // the BufferedEventHandler (e.g., non-http{s} URLs). (Bug 1225872) | 229 // the BufferedEventHandler (e.g., non-http{s} URLs). (Bug 1225872) |
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
325 GURL broken_url("chrome://theme"); | 326 GURL broken_url("chrome://theme"); |
326 ASSERT_EQ(AUTOMATION_MSG_NAVIGATION_SUCCESS, tab->NavigateToURL(broken_url)); | 327 ASSERT_EQ(AUTOMATION_MSG_NAVIGATION_SUCCESS, tab->NavigateToURL(broken_url)); |
327 | 328 |
328 // Make sure the navigation finishes. | 329 // Make sure the navigation finishes. |
329 std::wstring tab_title; | 330 std::wstring tab_title; |
330 EXPECT_TRUE(tab->GetTabTitle(&tab_title)); | 331 EXPECT_TRUE(tab->GetTabTitle(&tab_title)); |
331 EXPECT_EQ(L"chrome://theme/ is not available", tab_title); | 332 EXPECT_EQ(L"chrome://theme/ is not available", tab_title); |
332 } | 333 } |
333 | 334 |
334 } // namespace | 335 } // namespace |
OLD | NEW |