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

Unified Diff: content/browser/accessibility/dump_accessibility_tree_browsertest.cc

Issue 1231883002: Disable DumpAccessibilityTreeTest.AccessibilityTransition due to flakiness (Win/Mac) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 5 months 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: content/browser/accessibility/dump_accessibility_tree_browsertest.cc
diff --git a/content/browser/accessibility/dump_accessibility_tree_browsertest.cc b/content/browser/accessibility/dump_accessibility_tree_browsertest.cc
index 62ce4a20fdac5e2698f3a803a344232ad958bc92..2268da1ca4ac887570a1cc1dd5cbbfad8ce57dd9 100644
--- a/content/browser/accessibility/dump_accessibility_tree_browsertest.cc
+++ b/content/browser/accessibility/dump_accessibility_tree_browsertest.cc
@@ -1156,7 +1156,14 @@ IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityTitle) {
RunHtmlTest(FILE_PATH_LITERAL("title.html"));
}
-IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityTransition) {
+#if defined(OS_WIN) || defined(OS_MACOSX)
+// Flaky on Win/Mac: crbug.com/508532
+#define MAYBE_AccessibilityTransition DISABLED_AccessibilityTransition
+#else
+#define MAYBE_AccessibilityTransition AccessibilityTransition
+#endif
+IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest,
+ MAYBE_AccessibilityTransition) {
RunHtmlTest(FILE_PATH_LITERAL("transition.html"));
}
« 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