Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(171)

Side by Side Diff: content/browser/accessibility/dump_accessibility_tree_browsertest.cc

Issue 2796223003: Boolean attributes for Accessibility Object Model Phase 1 (Closed)
Patch Set: Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | content/shell/test_runner/web_ax_object_proxy.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 173 matching lines...) Expand 10 before | Expand all | Expand 10 after
184 } 184 }
185 185
186 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityANoText) { 186 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityANoText) {
187 RunHtmlTest(FILE_PATH_LITERAL("a-no-text.html")); 187 RunHtmlTest(FILE_PATH_LITERAL("a-no-text.html"));
188 } 188 }
189 189
190 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAOnclick) { 190 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAOnclick) {
191 RunHtmlTest(FILE_PATH_LITERAL("a-onclick.html")); 191 RunHtmlTest(FILE_PATH_LITERAL("a-onclick.html"));
192 } 192 }
193 193
194 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAomAtomic) {
195 RunAomTest(FILE_PATH_LITERAL("aom-atomic.html"));
196 }
197
198 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAomBusy) {
199 RunAomTest(FILE_PATH_LITERAL("aom-busy.html"));
200 }
201
194 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAomChecked) { 202 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAomChecked) {
195 RunAomTest(FILE_PATH_LITERAL("aom-checked.html")); 203 RunAomTest(FILE_PATH_LITERAL("aom-checked.html"));
196 } 204 }
197 205
206 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAomDisabled) {
207 RunAomTest(FILE_PATH_LITERAL("aom-disabled.html"));
208 }
209
210 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAomExpanded) {
211 RunAomTest(FILE_PATH_LITERAL("aom-expanded.html"));
212 }
213
214 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAomHidden) {
215 RunAomTest(FILE_PATH_LITERAL("aom-hidden.html"));
216 }
217
218 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAomModal) {
219 RunAomTest(FILE_PATH_LITERAL("aom-modal.html"));
220 }
221
222 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAomMultiline) {
223 RunAomTest(FILE_PATH_LITERAL("aom-multiline.html"));
224 }
225
226 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest,
227 AccessibilityAomMultiselectable) {
228 RunAomTest(FILE_PATH_LITERAL("aom-multiselectable.html"));
229 }
230
231 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAomReadOnly) {
232 RunAomTest(FILE_PATH_LITERAL("aom-readonly.html"));
233 }
234
235 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAomRequired) {
236 RunAomTest(FILE_PATH_LITERAL("aom-required.html"));
237 }
238
239 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAomSelected) {
240 RunAomTest(FILE_PATH_LITERAL("aom-selected.html"));
241 }
242
198 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, 243 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest,
199 AccessibilityAriaActivedescendant) { 244 AccessibilityAriaActivedescendant) {
200 RunAriaTest(FILE_PATH_LITERAL("aria-activedescendant.html")); 245 RunAriaTest(FILE_PATH_LITERAL("aria-activedescendant.html"));
201 } 246 }
202 247
203 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaAlert) { 248 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaAlert) {
204 RunAriaTest(FILE_PATH_LITERAL("aria-alert.html")); 249 RunAriaTest(FILE_PATH_LITERAL("aria-alert.html"));
205 } 250 }
206 251
207 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, 252 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest,
(...skipping 1272 matching lines...) Expand 10 before | Expand all | Expand 10 after
1480 // crbug.com/281952 1525 // crbug.com/281952
1481 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityVideo) { 1526 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityVideo) {
1482 RunHtmlTest(FILE_PATH_LITERAL("video.html")); 1527 RunHtmlTest(FILE_PATH_LITERAL("video.html"));
1483 } 1528 }
1484 1529
1485 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { 1530 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) {
1486 RunHtmlTest(FILE_PATH_LITERAL("wbr.html")); 1531 RunHtmlTest(FILE_PATH_LITERAL("wbr.html"));
1487 } 1532 }
1488 1533
1489 } // namespace content 1534 } // namespace content
OLDNEW
« no previous file with comments | « no previous file | content/shell/test_runner/web_ax_object_proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698