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 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
117 } | 117 } |
118 | 118 |
119 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAName) { | 119 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAName) { |
120 RunHtmlTest(FILE_PATH_LITERAL("a-name.html")); | 120 RunHtmlTest(FILE_PATH_LITERAL("a-name.html")); |
121 } | 121 } |
122 | 122 |
123 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityANameCalc) { | 123 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityANameCalc) { |
124 RunHtmlTest(FILE_PATH_LITERAL("a-name-calc.html")); | 124 RunHtmlTest(FILE_PATH_LITERAL("a-name-calc.html")); |
125 } | 125 } |
126 | 126 |
127 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 127 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityANoText) { |
128 MAYBE(AccessibilityANoText)) { | |
129 RunHtmlTest(FILE_PATH_LITERAL("a-no-text.html")); | 128 RunHtmlTest(FILE_PATH_LITERAL("a-no-text.html")); |
130 } | 129 } |
131 | 130 |
132 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAOnclick) { | 131 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAOnclick) { |
133 RunHtmlTest(FILE_PATH_LITERAL("a-onclick.html")); | 132 RunHtmlTest(FILE_PATH_LITERAL("a-onclick.html")); |
134 } | 133 } |
135 | 134 |
136 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 135 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
137 AccessibilityAriaActivedescendant) { | 136 AccessibilityAriaActivedescendant) { |
138 RunAriaTest(FILE_PATH_LITERAL("aria-activedescendant.html")); | 137 RunAriaTest(FILE_PATH_LITERAL("aria-activedescendant.html")); |
(...skipping 953 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1092 // crbug.com/281952 | 1091 // crbug.com/281952 |
1093 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityVideo) { | 1092 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityVideo) { |
1094 RunHtmlTest(FILE_PATH_LITERAL("video.html")); | 1093 RunHtmlTest(FILE_PATH_LITERAL("video.html")); |
1095 } | 1094 } |
1096 | 1095 |
1097 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { | 1096 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { |
1098 RunHtmlTest(FILE_PATH_LITERAL("wbr.html")); | 1097 RunHtmlTest(FILE_PATH_LITERAL("wbr.html")); |
1099 } | 1098 } |
1100 | 1099 |
1101 } // namespace content | 1100 } // namespace content |
OLD | NEW |