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

Side by Side Diff: content/browser/accessibility/dump_accessibility_tree_browsertest.cc

Issue 2003183002: Disable DumpAccessibilityTreeTest.AccessibilityIframePresentational on windows. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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 unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include <set> 5 #include <set>
6 #include <string> 6 #include <string>
7 #include <vector> 7 #include <vector>
8 8
9 #include "base/command_line.h" 9 #include "base/command_line.h"
10 #include "base/path_service.h" 10 #include "base/path_service.h"
(...skipping 861 matching lines...) Expand 10 before | Expand all | Expand 10 after
872 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, 872 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest,
873 AccessibilityIframeCoordinates) { 873 AccessibilityIframeCoordinates) {
874 RunHtmlTest(FILE_PATH_LITERAL("iframe-coordinates.html")); 874 RunHtmlTest(FILE_PATH_LITERAL("iframe-coordinates.html"));
875 } 875 }
876 876
877 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, 877 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest,
878 AccessibilityIframeCoordinatesCrossProcess) { 878 AccessibilityIframeCoordinatesCrossProcess) {
879 RunHtmlTest(FILE_PATH_LITERAL("iframe-coordinates-cross-process.html")); 879 RunHtmlTest(FILE_PATH_LITERAL("iframe-coordinates-cross-process.html"));
880 } 880 }
881 881
882 // Flaky on Win7. http://crbug.com/610744
883 #ifdef OS_WIN
884 #define MAYBE_AccessibilityIframePresentational DISABLED_AccessibilityIframePres entational
885 #else
886 #define MAYBE_AccessibilityIframePresentational AccessibilityIframePresentationa l
887 #endif
882 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, 888 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest,
883 AccessibilityIframePresentational) { 889 MAYBE_AccessibilityIframePresentational) {
884 RunHtmlTest(FILE_PATH_LITERAL("iframe-presentational.html")); 890 RunHtmlTest(FILE_PATH_LITERAL("iframe-presentational.html"));
885 } 891 }
886 892
887 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, 893 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest,
888 AccessibilityIframeTransform) { 894 AccessibilityIframeTransform) {
889 RunHtmlTest(FILE_PATH_LITERAL("iframe-transform.html")); 895 RunHtmlTest(FILE_PATH_LITERAL("iframe-transform.html"));
890 } 896 }
891 897
892 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, 898 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest,
893 AccessibilityIframeTransformCrossProcess) { 899 AccessibilityIframeTransformCrossProcess) {
(...skipping 445 matching lines...) Expand 10 before | Expand all | Expand 10 after
1339 // crbug.com/281952 1345 // crbug.com/281952
1340 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityVideo) { 1346 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityVideo) {
1341 RunHtmlTest(FILE_PATH_LITERAL("video.html")); 1347 RunHtmlTest(FILE_PATH_LITERAL("video.html"));
1342 } 1348 }
1343 1349
1344 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { 1350 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) {
1345 RunHtmlTest(FILE_PATH_LITERAL("wbr.html")); 1351 RunHtmlTest(FILE_PATH_LITERAL("wbr.html"));
1346 } 1352 }
1347 1353
1348 } // namespace content 1354 } // namespace content
OLDNEW
« 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