diff options
author | ananta@chromium.org <ananta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-04-15 14:50:33 +0000 |
---|---|---|
committer | ananta@chromium.org <ananta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-04-15 14:50:33 +0000 |
commit | 02dc82f90acb51ca3c1b3277782656f94ff9dad7 (patch) | |
tree | 3836c392fb793f80b889dbd63079134c18cf601d /chrome_frame | |
parent | 51d76ac9e348862ad5a70ad7c71f49f9472cef98 (diff) | |
download | chromium_src-02dc82f90acb51ca3c1b3277782656f94ff9dad7.zip chromium_src-02dc82f90acb51ca3c1b3277782656f94ff9dad7.tar.gz chromium_src-02dc82f90acb51ca3c1b3277782656f94ff9dad7.tar.bz2 |
The timeout for the ChromeFrame FullTabModeIE_KeyboardTest was incorrectly set to 0x9999 in a recent CL. Correcting this
to get the IE8 builder green.
TBR=amit
Review URL: http://codereview.chromium.org/1545039
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@44651 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome_frame')
-rw-r--r-- | chrome_frame/test/test_mock_with_web_server.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome_frame/test/test_mock_with_web_server.cc b/chrome_frame/test/test_mock_with_web_server.cc index 518b28b..f6819bb 100644 --- a/chrome_frame/test/test_mock_with_web_server.cc +++ b/chrome_frame/test/test_mock_with_web_server.cc @@ -350,7 +350,7 @@ TEST_F(ChromeFrameTestWithWebServer, FLAKY_FullTabModeIE_KeyboardTest) { if (hr == S_FALSE) return; - loop.RunFor(0x9999); + loop.RunFor(kChromeFrameLongNavigationTimeoutInSeconds); } const wchar_t kAboutVersionUrl[] = L"gcf:about:version"; |