diff options
author | ananta@chromium.org <ananta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-06-30 01:44:31 +0000 |
---|---|---|
committer | ananta@chromium.org <ananta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-06-30 01:44:31 +0000 |
commit | 417a8772320c58aa436b0e85a7a6a9b483852aef (patch) | |
tree | fbc805b34b18141bacd6708d075b596ebeb546a8 /chrome_frame | |
parent | d1d413e2a985fe03a680387aced6cfb4a2aaba92 (diff) | |
download | chromium_src-417a8772320c58aa436b0e85a7a6a9b483852aef.zip chromium_src-417a8772320c58aa436b0e85a7a6a9b483852aef.tar.gz chromium_src-417a8772320c58aa436b0e85a7a6a9b483852aef.tar.bz2 |
Attempt to fix the ChromeFrame tests which rely on sending input to the IE address bar to initiate navigation.
These tests fail at times on the builders because of an incorrect URL actually being sent in to Chrome.
Fix is to increase the delay between selecting the address bar via Alt+D and sending the url.
TBR=amit
Review URL: http://codereview.chromium.org/2827036
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51211 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 cef0b61d..64f55594 100644 --- a/chrome_frame/test/test_mock_with_web_server.cc +++ b/chrome_frame/test/test_mock_with_web_server.cc @@ -223,7 +223,7 @@ ACTION_P3(TypeUrlInAddressBar, loop, url, delay) { simulate_input::SendCharA, 'd', simulate_input::ALT), delay); - const unsigned int kInterval = 100; + const unsigned int kInterval = 500; int next_delay = delay + kInterval; loop->PostDelayedTask(FROM_HERE, NewRunnableFunction( |