summaryrefslogtreecommitdiffstats
path: root/chrome_frame
diff options
context:
space:
mode:
authorananta@chromium.org <ananta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-01-16 20:29:19 +0000
committerananta@chromium.org <ananta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-01-16 20:29:19 +0000
commit05ab4c2b5ee11aa985559d8f812c6ae8611587de (patch)
tree4bfaf2cc836e31c6dde1708d7d49c68d1065e50a /chrome_frame
parent31ccd1c3fe92294250e2c953e7fee72a7922e351 (diff)
downloadchromium_src-05ab4c2b5ee11aa985559d8f812c6ae8611587de.zip
chromium_src-05ab4c2b5ee11aa985559d8f812c6ae8611587de.tar.gz
chromium_src-05ab4c2b5ee11aa985559d8f812c6ae8611587de.tar.bz2
Fix for ChromeFrame TypeUrl test failures on the IE9 builder. The Address bar accessibility
object name had changed a bit in the IE9 update. Updated the text expectations to account for this. BUG=none TEST=Existing ChromeFrame TypeUrl tests. TBR=amit Review URL: http://codereview.chromium.org/6248007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@71579 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome_frame')
-rw-r--r--chrome_frame/test/navigation_test.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome_frame/test/navigation_test.cc b/chrome_frame/test/navigation_test.cc
index fea6387..0e83867 100644
--- a/chrome_frame/test/navigation_test.cc
+++ b/chrome_frame/test/navigation_test.cc
@@ -45,7 +45,7 @@ INSTANTIATE_TEST_CASE_P(HttpHeader, FullTabNavigationTest, testing::Values(
TEST_P(FullTabNavigationTest, TypeUrl) {
MockAccEventObserver acc_observer;
EXPECT_CALL(acc_observer, OnAccDocLoad(_)).Times(testing::AnyNumber());
- AccObjectMatcher address_matcher(L"Address", L"editable text");
+ AccObjectMatcher address_matcher(L"Address*", L"editable text");
AccObjectMatcher go_matcher(L"Go*", L"push button");
ie_mock_.ExpectNavigation(IN_IE, GetSimplePageUrl());
@@ -72,7 +72,7 @@ TEST_P(FullTabNavigationTest, TypeUrl) {
TEST_P(FullTabNavigationTest, TypeAnchorUrl) {
MockAccEventObserver acc_observer;
EXPECT_CALL(acc_observer, OnAccDocLoad(_)).Times(testing::AnyNumber());
- AccObjectMatcher address_matcher(L"Address", L"editable text");
+ AccObjectMatcher address_matcher(L"Address*", L"editable text");
AccObjectMatcher go_matcher(L"Go*", L"push button");
ie_mock_.ExpectNavigation(IN_IE, GetSimplePageUrl());