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

Unified Diff: chrome_frame/test/ui_test.cc

Issue 4700003: Fix for the CtrlN ChromeFrame test failures on IE7. On IE7 it appears that we... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome_frame/test/ui_test.cc
===================================================================
--- chrome_frame/test/ui_test.cc (revision 65569)
+++ chrome_frame/test/ui_test.cc (working copy)
@@ -130,7 +130,9 @@
// Watch for new window. It appears that the window close message cannot be
// reliably delivered immediately upon receipt of the window open event.
EXPECT_CALL(win_observer_mock, OnWindowOpen(_))
- .WillOnce(DelayDoCloseWindow(500));
+ .Times(testing::AtMost(2))
+ .WillOnce(DelayDoCloseWindow(500))
+ .WillOnce(testing::Return());
EXPECT_CALL(win_observer_mock, OnWindowClose(_))
.WillOnce(CloseBrowserMock(&ie_mock_));
« 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