| 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 947 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 958 } | 958 } |
| 959 | 959 |
| 960 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityListMarkers) { | 960 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityListMarkers) { |
| 961 RunHtmlTest(FILE_PATH_LITERAL("list-markers.html")); | 961 RunHtmlTest(FILE_PATH_LITERAL("list-markers.html")); |
| 962 } | 962 } |
| 963 | 963 |
| 964 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityMain) { | 964 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityMain) { |
| 965 RunHtmlTest(FILE_PATH_LITERAL("main.html")); | 965 RunHtmlTest(FILE_PATH_LITERAL("main.html")); |
| 966 } | 966 } |
| 967 | 967 |
| 968 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityMark) { | 968 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityMark) { |
| 969 RunHtmlTest(FILE_PATH_LITERAL("mark.html")); | 969 RunHtmlTest(FILE_PATH_LITERAL("mark.html")); |
| 970 } | 970 } |
| 971 | 971 |
| 972 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityMath) { | 972 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityMath) { |
| 973 RunHtmlTest(FILE_PATH_LITERAL("math.html")); | 973 RunHtmlTest(FILE_PATH_LITERAL("math.html")); |
| 974 } | 974 } |
| 975 | 975 |
| 976 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 976 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
| 977 AccessibilityMenutypecontext) { | 977 AccessibilityMenutypecontext) { |
| 978 RunHtmlTest(FILE_PATH_LITERAL("menu-type-context.html")); | 978 RunHtmlTest(FILE_PATH_LITERAL("menu-type-context.html")); |
| (...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1162 // crbug.com/281952 | 1162 // crbug.com/281952 |
| 1163 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityVideo) { | 1163 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityVideo) { |
| 1164 RunHtmlTest(FILE_PATH_LITERAL("video.html")); | 1164 RunHtmlTest(FILE_PATH_LITERAL("video.html")); |
| 1165 } | 1165 } |
| 1166 | 1166 |
| 1167 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { | 1167 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { |
| 1168 RunHtmlTest(FILE_PATH_LITERAL("wbr.html")); | 1168 RunHtmlTest(FILE_PATH_LITERAL("wbr.html")); |
| 1169 } | 1169 } |
| 1170 | 1170 |
| 1171 } // namespace content | 1171 } // namespace content |
| OLD | NEW |