| OLD | NEW |
| 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 1128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1139 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 1139 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
| 1140 AccessibilityModalDialogClosed) { | 1140 AccessibilityModalDialogClosed) { |
| 1141 RunHtmlTest(FILE_PATH_LITERAL("modal-dialog-closed.html")); | 1141 RunHtmlTest(FILE_PATH_LITERAL("modal-dialog-closed.html")); |
| 1142 } | 1142 } |
| 1143 | 1143 |
| 1144 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 1144 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
| 1145 AccessibilityModalDialogOpened) { | 1145 AccessibilityModalDialogOpened) { |
| 1146 RunHtmlTest(FILE_PATH_LITERAL("modal-dialog-opened.html")); | 1146 RunHtmlTest(FILE_PATH_LITERAL("modal-dialog-opened.html")); |
| 1147 } | 1147 } |
| 1148 | 1148 |
| 1149 // Flaky on Windows and Mac: crbug.com/593846 | 1149 // Flaky: crbug.com/593846, crbug.com/596514 |
| 1150 #if defined(OS_WIN) || defined(OS_MACOSX) | |
| 1151 #define MAYBE_AccessibilityModalDialogInIframeClosed \ | |
| 1152 DISABLED_AccessibilityModalDialogInIframeClosed | |
| 1153 #else | |
| 1154 #define MAYBE_AccessibilityModalDialogInIframeClosed \ | |
| 1155 AccessibilityModalDialogInIframeClosed | |
| 1156 #endif | |
| 1157 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 1150 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
| 1158 MAYBE_AccessibilityModalDialogInIframeClosed) { | 1151 DISABLED_AccessibilityModalDialogInIframeClosed) { |
| 1159 RunHtmlTest(FILE_PATH_LITERAL("modal-dialog-in-iframe-closed.html")); | 1152 RunHtmlTest(FILE_PATH_LITERAL("modal-dialog-in-iframe-closed.html")); |
| 1160 } | 1153 } |
| 1161 | 1154 |
| 1162 // Flaky on Windows and Mac: crbug.com/593846 | 1155 // Flaky on Windows and Mac: crbug.com/593846 |
| 1163 #if defined(OS_WIN) || defined(OS_MACOSX) | 1156 #if defined(OS_WIN) || defined(OS_MACOSX) |
| 1164 #define MAYBE_AccessibilityModalDialogInIframeOpened \ | 1157 #define MAYBE_AccessibilityModalDialogInIframeOpened \ |
| 1165 DISABLED_AccessibilityModalDialogInIframeOpened | 1158 DISABLED_AccessibilityModalDialogInIframeOpened |
| 1166 #else | 1159 #else |
| 1167 #define MAYBE_AccessibilityModalDialogInIframeOpened \ | 1160 #define MAYBE_AccessibilityModalDialogInIframeOpened \ |
| 1168 AccessibilityModalDialogInIframeOpened | 1161 AccessibilityModalDialogInIframeOpened |
| (...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1342 // crbug.com/281952 | 1335 // crbug.com/281952 |
| 1343 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityVideo) { | 1336 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityVideo) { |
| 1344 RunHtmlTest(FILE_PATH_LITERAL("video.html")); | 1337 RunHtmlTest(FILE_PATH_LITERAL("video.html")); |
| 1345 } | 1338 } |
| 1346 | 1339 |
| 1347 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { | 1340 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { |
| 1348 RunHtmlTest(FILE_PATH_LITERAL("wbr.html")); | 1341 RunHtmlTest(FILE_PATH_LITERAL("wbr.html")); |
| 1349 } | 1342 } |
| 1350 | 1343 |
| 1351 } // namespace content | 1344 } // namespace content |
| OLD | NEW |