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

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

Issue 2799413002: Views a11y: Add AXNodeData.actions bitfield to indicate supported actions by UI. (Closed)
Patch Set: Fix tests broken from rebase. Created 3 years, 7 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
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 147 matching lines...) Expand 10 before | Expand all | Expand 10 after
158 } 158 }
159 159
160 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAbbr) { 160 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAbbr) {
161 RunHtmlTest(FILE_PATH_LITERAL("abbr.html")); 161 RunHtmlTest(FILE_PATH_LITERAL("abbr.html"));
162 } 162 }
163 163
164 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityActionVerbs) { 164 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityActionVerbs) {
165 RunHtmlTest(FILE_PATH_LITERAL("action-verbs.html")); 165 RunHtmlTest(FILE_PATH_LITERAL("action-verbs.html"));
166 } 166 }
167 167
168 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityActions) {
169 RunHtmlTest(FILE_PATH_LITERAL("actions.html"));
170 }
171
168 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAddress) { 172 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAddress) {
169 RunHtmlTest(FILE_PATH_LITERAL("address.html")); 173 RunHtmlTest(FILE_PATH_LITERAL("address.html"));
170 } 174 }
171 175
172 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityArea) { 176 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityArea) {
173 RunHtmlTest(FILE_PATH_LITERAL("area.html")); 177 RunHtmlTest(FILE_PATH_LITERAL("area.html"));
174 } 178 }
175 179
176 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAName) { 180 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAName) {
177 RunHtmlTest(FILE_PATH_LITERAL("a-name.html")); 181 RunHtmlTest(FILE_PATH_LITERAL("a-name.html"));
(...skipping 1313 matching lines...) Expand 10 before | Expand all | Expand 10 after
1491 // crbug.com/281952 1495 // crbug.com/281952
1492 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityVideo) { 1496 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityVideo) {
1493 RunHtmlTest(FILE_PATH_LITERAL("video.html")); 1497 RunHtmlTest(FILE_PATH_LITERAL("video.html"));
1494 } 1498 }
1495 1499
1496 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { 1500 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) {
1497 RunHtmlTest(FILE_PATH_LITERAL("wbr.html")); 1501 RunHtmlTest(FILE_PATH_LITERAL("wbr.html"));
1498 } 1502 }
1499 1503
1500 } // namespace content 1504 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698