Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(589)

Side by Side Diff: chrome_frame/test/chrome_frame_unittests.cc

Issue 348026: Mark the flaky iframe post test as such. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698