| 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 1118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1129 } | 1129 } |
| 1130 | 1130 |
| 1131 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputWeek) { | 1131 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputWeek) { |
| 1132 RunHtmlTest(FILE_PATH_LITERAL("input-week.html")); | 1132 RunHtmlTest(FILE_PATH_LITERAL("input-week.html")); |
| 1133 } | 1133 } |
| 1134 | 1134 |
| 1135 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityIns) { | 1135 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityIns) { |
| 1136 RunHtmlTest(FILE_PATH_LITERAL("ins.html")); | 1136 RunHtmlTest(FILE_PATH_LITERAL("ins.html")); |
| 1137 } | 1137 } |
| 1138 | 1138 |
| 1139 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityKeygen) { | |
| 1140 RunHtmlTest(FILE_PATH_LITERAL("keygen.html")); | |
| 1141 } | |
| 1142 | |
| 1143 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityLabel) { | 1139 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityLabel) { |
| 1144 RunHtmlTest(FILE_PATH_LITERAL("label.html")); | 1140 RunHtmlTest(FILE_PATH_LITERAL("label.html")); |
| 1145 } | 1141 } |
| 1146 | 1142 |
| 1147 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityLandmark) { | 1143 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityLandmark) { |
| 1148 RunHtmlTest(FILE_PATH_LITERAL("landmark.html")); | 1144 RunHtmlTest(FILE_PATH_LITERAL("landmark.html")); |
| 1149 } | 1145 } |
| 1150 | 1146 |
| 1151 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityLegend) { | 1147 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityLegend) { |
| 1152 RunHtmlTest(FILE_PATH_LITERAL("legend.html")); | 1148 RunHtmlTest(FILE_PATH_LITERAL("legend.html")); |
| (...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1402 // crbug.com/281952 | 1398 // crbug.com/281952 |
| 1403 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityVideo) { | 1399 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityVideo) { |
| 1404 RunHtmlTest(FILE_PATH_LITERAL("video.html")); | 1400 RunHtmlTest(FILE_PATH_LITERAL("video.html")); |
| 1405 } | 1401 } |
| 1406 | 1402 |
| 1407 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { | 1403 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { |
| 1408 RunHtmlTest(FILE_PATH_LITERAL("wbr.html")); | 1404 RunHtmlTest(FILE_PATH_LITERAL("wbr.html")); |
| 1409 } | 1405 } |
| 1410 | 1406 |
| 1411 } // namespace content | 1407 } // namespace content |
| OLD | NEW |