diff options
author | satish@chromium.org <satish@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-05 12:08:55 +0000 |
---|---|---|
committer | satish@chromium.org <satish@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-05 12:08:55 +0000 |
commit | 1bf7c3856fa55dbc3efbc4871a84d869720d26cb (patch) | |
tree | 620f7658ba21b669ab21f041993f15ebde3c0018 /chrome/browser/accessibility | |
parent | 43a6265c94adf07a40df91c6e111956f03387c71 (diff) | |
download | chromium_src-1bf7c3856fa55dbc3efbc4871a84d869720d26cb.zip chromium_src-1bf7c3856fa55dbc3efbc4871a84d869720d26cb.tar.gz chromium_src-1bf7c3856fa55dbc3efbc4871a84d869720d26cb.tar.bz2 |
Disabled accessibility browser tests which timeout on windows
BUG=57959
TEST=none
TBR=ctguil@chromium.org
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61498 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/accessibility')
-rw-r--r-- | chrome/browser/accessibility/accessibility_win_browsertest.cc | 21 |
1 files changed, 14 insertions, 7 deletions
diff --git a/chrome/browser/accessibility/accessibility_win_browsertest.cc b/chrome/browser/accessibility/accessibility_win_browsertest.cc index 8b7559e..74eddd4 100644 --- a/chrome/browser/accessibility/accessibility_win_browsertest.cc +++ b/chrome/browser/accessibility/accessibility_win_browsertest.cc @@ -317,8 +317,9 @@ void AccessibleChecker::CheckAccessibleChildren(IAccessible* parent) { } } +// FAILS http://crbug.com/57959 IN_PROC_BROWSER_TEST_F(AccessibilityWinBrowserTest, - TestRendererAccessibilityTree) { + DISABLED_TestRendererAccessibilityTree) { // The initial accessible returned should have state STATE_SYSTEM_BUSY while // the accessibility tree is being requested from the renderer. AccessibleChecker document1_checker(L"", ROLE_SYSTEM_DOCUMENT, L""); @@ -373,8 +374,9 @@ IN_PROC_BROWSER_TEST_F(AccessibilityWinBrowserTest, ASSERT_EQ(E_FAIL, hr); } +// FAILS http://crbug.com/57959 IN_PROC_BROWSER_TEST_F(AccessibilityWinBrowserTest, - TestNotificationActiveDescendantChanged) { + DISABLED_TestNotificationActiveDescendantChanged) { GURL tree_url("data:text/html,<ul tabindex='-1' role='radiogroup'><li id='li'" ">li</li></ul>"); browser()->OpenURL(tree_url, GURL(), CURRENT_TAB, PageTransition::TYPED); @@ -422,8 +424,9 @@ IN_PROC_BROWSER_TEST_F(AccessibilityWinBrowserTest, document_checker.CheckAccessible(GetRendererAccessible()); } +// FAILS http://crbug.com/57959 IN_PROC_BROWSER_TEST_F(AccessibilityWinBrowserTest, - TestNotificationCheckedStateChanged) { + DISABLED_TestNotificationCheckedStateChanged) { GURL tree_url("data:text/html,<body><input type='checkbox' /></body>"); browser()->OpenURL(tree_url, GURL(), CURRENT_TAB, PageTransition::TYPED); GetRendererAccessible(); @@ -451,8 +454,9 @@ IN_PROC_BROWSER_TEST_F(AccessibilityWinBrowserTest, document_checker.CheckAccessible(GetRendererAccessible()); } +// FAILS http://crbug.com/57959 IN_PROC_BROWSER_TEST_F(AccessibilityWinBrowserTest, - TestNotificationChildrenChanged) { + DISABLED_TestNotificationChildrenChanged) { // The role attribute causes the node to be in the accessibility tree. GURL tree_url( "data:text/html,<body role=group></body>"); @@ -478,8 +482,9 @@ IN_PROC_BROWSER_TEST_F(AccessibilityWinBrowserTest, document_checker.CheckAccessible(GetRendererAccessible()); } +// FAILS http://crbug.com/57959 IN_PROC_BROWSER_TEST_F(AccessibilityWinBrowserTest, - TestNotificationChildrenChanged2) { + DISABLED_TestNotificationChildrenChanged2) { // The role attribute causes the node to be in the accessibility tree. GURL tree_url( "data:text/html,<div role=group style='visibility: hidden'>text" @@ -506,8 +511,9 @@ IN_PROC_BROWSER_TEST_F(AccessibilityWinBrowserTest, document_checker.CheckAccessible(GetRendererAccessible()); } +// FAILS http://crbug.com/57959 IN_PROC_BROWSER_TEST_F(AccessibilityWinBrowserTest, - TestNotificationFocusChanged) { + DISABLED_TestNotificationFocusChanged) { // The role attribute causes the node to be in the accessibility tree. GURL tree_url( "data:text/html,<div role=group tabindex='-1'></div>"); @@ -552,8 +558,9 @@ IN_PROC_BROWSER_TEST_F(AccessibilityWinBrowserTest, // document_checker.CheckAccessible(GetRendererAccessible()); } +// FAILS http://crbug.com/57959 IN_PROC_BROWSER_TEST_F(AccessibilityWinBrowserTest, - TestNotificationValueChanged) { + DISABLED_TestNotificationValueChanged) { GURL tree_url("data:text/html,<body><input type='text' value='old value'/>" "</body>"); browser()->OpenURL(tree_url, GURL(), CURRENT_TAB, PageTransition::TYPED); |