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 1071 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1082 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 1082 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
1083 AccessibilityModalDialogClosed) { | 1083 AccessibilityModalDialogClosed) { |
1084 RunHtmlTest(FILE_PATH_LITERAL("modal-dialog-closed.html")); | 1084 RunHtmlTest(FILE_PATH_LITERAL("modal-dialog-closed.html")); |
1085 } | 1085 } |
1086 | 1086 |
1087 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 1087 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
1088 AccessibilityModalDialogOpened) { | 1088 AccessibilityModalDialogOpened) { |
1089 RunHtmlTest(FILE_PATH_LITERAL("modal-dialog-opened.html")); | 1089 RunHtmlTest(FILE_PATH_LITERAL("modal-dialog-opened.html")); |
1090 } | 1090 } |
1091 | 1091 |
| 1092 #if defined(OS_WIN) |
| 1093 #define MAYBE_AccessibilityModalDialogInIframeClosed \ |
| 1094 DISABLED_AccessibilityModalDialogInIframeClosed |
| 1095 #else |
| 1096 #define MAYBE_AccessibilityModalDialogInIframeClosed \ |
| 1097 AccessibilityModalDialogInIframeClosed |
| 1098 #endif |
1092 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 1099 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
1093 AccessibilityModalDialogInIframeClosed) { | 1100 MAYBE_AccessibilityModalDialogInIframeClosed) { |
1094 RunHtmlTest(FILE_PATH_LITERAL("modal-dialog-in-iframe-closed.html")); | 1101 RunHtmlTest(FILE_PATH_LITERAL("modal-dialog-in-iframe-closed.html")); |
1095 } | 1102 } |
1096 | 1103 |
1097 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 1104 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
1098 AccessibilityModalDialogInIframeOpened) { | 1105 AccessibilityModalDialogInIframeOpened) { |
1099 RunHtmlTest(FILE_PATH_LITERAL("modal-dialog-in-iframe-opened.html")); | 1106 RunHtmlTest(FILE_PATH_LITERAL("modal-dialog-in-iframe-opened.html")); |
1100 } | 1107 } |
1101 | 1108 |
1102 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 1109 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
1103 AccessibilityModalDialogStack) { | 1110 AccessibilityModalDialogStack) { |
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1269 // crbug.com/281952 | 1276 // crbug.com/281952 |
1270 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityVideo) { | 1277 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityVideo) { |
1271 RunHtmlTest(FILE_PATH_LITERAL("video.html")); | 1278 RunHtmlTest(FILE_PATH_LITERAL("video.html")); |
1272 } | 1279 } |
1273 | 1280 |
1274 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { | 1281 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { |
1275 RunHtmlTest(FILE_PATH_LITERAL("wbr.html")); | 1282 RunHtmlTest(FILE_PATH_LITERAL("wbr.html")); |
1276 } | 1283 } |
1277 | 1284 |
1278 } // namespace content | 1285 } // namespace content |
OLD | NEW |