| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "chrome_frame/test/test_with_web_server.h" | 5 #include "chrome_frame/test/test_with_web_server.h" |
| 6 | 6 |
| 7 #include "base/base_paths.h" | 7 #include "base/base_paths.h" |
| 8 #include "base/file_util.h" | 8 #include "base/file_util.h" |
| 9 #include "base/file_version_info.h" | 9 #include "base/file_version_info.h" |
| 10 #include "base/files/memory_mapped_file.h" | 10 #include "base/files/memory_mapped_file.h" |
| (...skipping 441 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 452 } | 452 } |
| 453 | 453 |
| 454 // Times out: http://crbug.com/163728 | 454 // Times out: http://crbug.com/163728 |
| 455 TEST_F(ChromeFrameTestWithWebServer, DISABLED_WidgetModeIE_Resize) { | 455 TEST_F(ChromeFrameTestWithWebServer, DISABLED_WidgetModeIE_Resize) { |
| 456 SimpleBrowserTest(IE, L"chrome_frame_resize.html"); | 456 SimpleBrowserTest(IE, L"chrome_frame_resize.html"); |
| 457 } | 457 } |
| 458 | 458 |
| 459 const wchar_t kNavigateURLAbsolutePage[] = | 459 const wchar_t kNavigateURLAbsolutePage[] = |
| 460 L"navigateurl_absolute_host.html"; | 460 L"navigateurl_absolute_host.html"; |
| 461 | 461 |
| 462 TEST_F(ChromeFrameTestWithWebServer, | 462 TEST_F(ChromeFrameTestWithWebServer, WidgetModeIE_NavigateURLAbsolute) { |
| 463 DISABLED_WidgetModeIE_NavigateURLAbsolute) { | |
| 464 SimpleBrowserTest(IE, kNavigateURLAbsolutePage); | 463 SimpleBrowserTest(IE, kNavigateURLAbsolutePage); |
| 465 } | 464 } |
| 466 | 465 |
| 467 const wchar_t kNavigateURLRelativePage[] = | 466 const wchar_t kNavigateURLRelativePage[] = |
| 468 L"navigateurl_relative_host.html"; | 467 L"navigateurl_relative_host.html"; |
| 469 | 468 |
| 470 // Flaky, crbug.com/160497. | 469 // Flaky, crbug.com/160497. |
| 471 TEST_F(ChromeFrameTestWithWebServer, | 470 TEST_F(ChromeFrameTestWithWebServer, |
| 472 DISABLED_WidgetModeIE_NavigateURLRelative) { | 471 DISABLED_WidgetModeIE_NavigateURLRelative) { |
| 473 SimpleBrowserTest(IE, kNavigateURLRelativePage); | 472 SimpleBrowserTest(IE, kNavigateURLRelativePage); |
| (...skipping 617 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1091 // This test loads a large page and ensures that the full page contents are | 1090 // This test loads a large page and ensures that the full page contents are |
| 1092 // actually loaded via a self-validating HTML page. This is done due to a bug | 1091 // actually loaded via a self-validating HTML page. This is done due to a bug |
| 1093 // whereby the middle of the response stream would sometimes be truncated when | 1092 // whereby the middle of the response stream would sometimes be truncated when |
| 1094 // loading a CF document. See http://crbug.com/178421 for details. | 1093 // loading a CF document. See http://crbug.com/178421 for details. |
| 1095 TEST_F(ChromeFrameTestWithWebServer, FullTabModeIE_LargePageLoad) { | 1094 TEST_F(ChromeFrameTestWithWebServer, FullTabModeIE_LargePageLoad) { |
| 1096 const wchar_t kLargePageLoadPage[] = | 1095 const wchar_t kLargePageLoadPage[] = |
| 1097 L"chrome_frame_large_page.html"; | 1096 L"chrome_frame_large_page.html"; |
| 1098 | 1097 |
| 1099 SimpleBrowserTest(IE, kLargePageLoadPage); | 1098 SimpleBrowserTest(IE, kLargePageLoadPage); |
| 1100 } | 1099 } |
| OLD | NEW |