| 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 1138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1149 } | 1149 } |
| 1150 | 1150 |
| 1151 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityTime) { | 1151 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityTime) { |
| 1152 RunHtmlTest(FILE_PATH_LITERAL("time.html")); | 1152 RunHtmlTest(FILE_PATH_LITERAL("time.html")); |
| 1153 } | 1153 } |
| 1154 | 1154 |
| 1155 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityTitle) { | 1155 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityTitle) { |
| 1156 RunHtmlTest(FILE_PATH_LITERAL("title.html")); | 1156 RunHtmlTest(FILE_PATH_LITERAL("title.html")); |
| 1157 } | 1157 } |
| 1158 | 1158 |
| 1159 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityTransition) { | 1159 #if defined(OS_WIN) || defined(OS_MACOSX) |
| 1160 // Flaky on Win/Mac: crbug.com/508532 |
| 1161 #define MAYBE_AccessibilityTransition DISABLED_AccessibilityTransition |
| 1162 #else |
| 1163 #define MAYBE_AccessibilityTransition AccessibilityTransition |
| 1164 #endif |
| 1165 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
| 1166 MAYBE_AccessibilityTransition) { |
| 1160 RunHtmlTest(FILE_PATH_LITERAL("transition.html")); | 1167 RunHtmlTest(FILE_PATH_LITERAL("transition.html")); |
| 1161 } | 1168 } |
| 1162 | 1169 |
| 1163 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityUl) { | 1170 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityUl) { |
| 1164 RunHtmlTest(FILE_PATH_LITERAL("ul.html")); | 1171 RunHtmlTest(FILE_PATH_LITERAL("ul.html")); |
| 1165 } | 1172 } |
| 1166 | 1173 |
| 1167 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityVar) { | 1174 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityVar) { |
| 1168 RunHtmlTest(FILE_PATH_LITERAL("var.html")); | 1175 RunHtmlTest(FILE_PATH_LITERAL("var.html")); |
| 1169 } | 1176 } |
| 1170 | 1177 |
| 1171 // crbug.com/281952 | 1178 // crbug.com/281952 |
| 1172 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityVideo) { | 1179 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityVideo) { |
| 1173 RunHtmlTest(FILE_PATH_LITERAL("video.html")); | 1180 RunHtmlTest(FILE_PATH_LITERAL("video.html")); |
| 1174 } | 1181 } |
| 1175 | 1182 |
| 1176 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { | 1183 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { |
| 1177 RunHtmlTest(FILE_PATH_LITERAL("wbr.html")); | 1184 RunHtmlTest(FILE_PATH_LITERAL("wbr.html")); |
| 1178 } | 1185 } |
| 1179 | 1186 |
| 1180 } // namespace content | 1187 } // namespace content |
| OLD | NEW |