OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 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 | 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 #include <windows.h> | 4 #include <windows.h> |
5 #include <stdarg.h> | 5 #include <stdarg.h> |
6 | 6 |
7 // IShellWindows includes. Unfortunately we can't keep these in | 7 // IShellWindows includes. Unfortunately we can't keep these in |
8 // alphabetic order since exdisp will bark if some interfaces aren't fully | 8 // alphabetic order since exdisp will bark if some interfaces aren't fully |
9 // defined. | 9 // defined. |
10 #include <mshtml.h> | 10 #include <mshtml.h> |
(...skipping 452 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
463 TEST_F(ChromeFrameTestWithWebServer, WidgetModeOpera_CFInstanceZeroSize) { | 463 TEST_F(ChromeFrameTestWithWebServer, WidgetModeOpera_CFInstanceZeroSize) { |
464 OptionalBrowserTest(OPERA, kCFIZeroSizePage, L"CFInstanceZeroSize"); | 464 OptionalBrowserTest(OPERA, kCFIZeroSizePage, L"CFInstanceZeroSize"); |
465 } | 465 } |
466 | 466 |
467 const wchar_t kCFIIfrPostPage[] = L"files/CFInstance_iframe_post_host.html"; | 467 const wchar_t kCFIIfrPostPage[] = L"files/CFInstance_iframe_post_host.html"; |
468 | 468 |
469 TEST_F(ChromeFrameTestWithWebServer, WidgetModeIE_CFInstanceIfrPost) { | 469 TEST_F(ChromeFrameTestWithWebServer, WidgetModeIE_CFInstanceIfrPost) { |
470 SimpleBrowserTest(IE, kCFIIfrPostPage, L"CFInstanceIfrPost"); | 470 SimpleBrowserTest(IE, kCFIIfrPostPage, L"CFInstanceIfrPost"); |
471 } | 471 } |
472 | 472 |
473 TEST_F(ChromeFrameTestWithWebServer, WidgetModeFF_CFInstanceIfrPost) { | 473 // Flakes out on the bots, http://crbug.com/26372 |
| 474 TEST_F(ChromeFrameTestWithWebServer, |
| 475 FLAKY_WidgetModeFF_CFInstanceIfrPost) { |
474 SimpleBrowserTest(FIREFOX, kCFIIfrPostPage, L"CFInstanceIfrPost"); | 476 SimpleBrowserTest(FIREFOX, kCFIIfrPostPage, L"CFInstanceIfrPost"); |
475 } | 477 } |
476 | 478 |
477 TEST_F(ChromeFrameTestWithWebServer, WidgetModeChrome_CFInstanceIfrPost) { | 479 TEST_F(ChromeFrameTestWithWebServer, WidgetModeChrome_CFInstanceIfrPost) { |
478 OptionalBrowserTest(CHROME, kCFIIfrPostPage, L"CFInstanceIfrPost"); | 480 OptionalBrowserTest(CHROME, kCFIIfrPostPage, L"CFInstanceIfrPost"); |
479 } | 481 } |
480 | 482 |
481 TEST_F(ChromeFrameTestWithWebServer, WidgetModeSafari_CFInstanceIfrPost) { | 483 TEST_F(ChromeFrameTestWithWebServer, WidgetModeSafari_CFInstanceIfrPost) { |
482 OptionalBrowserTest(SAFARI, kCFIIfrPostPage, L"CFInstanceIfrPost"); | 484 OptionalBrowserTest(SAFARI, kCFIIfrPostPage, L"CFInstanceIfrPost"); |
483 } | 485 } |
(...skipping 1011 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1495 return; | 1497 return; |
1496 | 1498 |
1497 ASSERT_TRUE(mock.web_browser2() != NULL); | 1499 ASSERT_TRUE(mock.web_browser2() != NULL); |
1498 | 1500 |
1499 loop.RunFor(kChromeFrameLongNavigationTimeoutInSeconds); | 1501 loop.RunFor(kChromeFrameLongNavigationTimeoutInSeconds); |
1500 | 1502 |
1501 mock.Uninitialize(); | 1503 mock.Uninitialize(); |
1502 chrome_frame_test::CloseAllIEWindows(); | 1504 chrome_frame_test::CloseAllIEWindows(); |
1503 } | 1505 } |
1504 | 1506 |
OLD | NEW |