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

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

Issue 1952863003: Implemented the "aria-current" state on Windows. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed switch statements to handle NONE case. Created 4 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 226 matching lines...) Expand 10 before | Expand all | Expand 10 after
237 237
238 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, 238 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest,
239 AccessibilityAriaContentInfo) { 239 AccessibilityAriaContentInfo) {
240 RunAriaTest(FILE_PATH_LITERAL("aria-contentinfo.html")); 240 RunAriaTest(FILE_PATH_LITERAL("aria-contentinfo.html"));
241 } 241 }
242 242
243 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaControls) { 243 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaControls) {
244 RunAriaTest(FILE_PATH_LITERAL("aria-controls.html")); 244 RunAriaTest(FILE_PATH_LITERAL("aria-controls.html"));
245 } 245 }
246 246
247 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaCurrent) {
248 RunAriaTest(FILE_PATH_LITERAL("aria-current.html"));
249 }
250
247 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaDefinition) { 251 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaDefinition) {
248 RunAriaTest(FILE_PATH_LITERAL("aria-definition.html")); 252 RunAriaTest(FILE_PATH_LITERAL("aria-definition.html"));
249 } 253 }
250 254
251 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, 255 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest,
252 AccessibilityAriaDescribedBy) { 256 AccessibilityAriaDescribedBy) {
253 RunAriaTest(FILE_PATH_LITERAL("aria-describedby.html")); 257 RunAriaTest(FILE_PATH_LITERAL("aria-describedby.html"));
254 } 258 }
255 259
256 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaDialog) { 260 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaDialog) {
(...skipping 1078 matching lines...) Expand 10 before | Expand all | Expand 10 after
1335 // crbug.com/281952 1339 // crbug.com/281952
1336 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityVideo) { 1340 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityVideo) {
1337 RunHtmlTest(FILE_PATH_LITERAL("video.html")); 1341 RunHtmlTest(FILE_PATH_LITERAL("video.html"));
1338 } 1342 }
1339 1343
1340 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { 1344 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) {
1341 RunHtmlTest(FILE_PATH_LITERAL("wbr.html")); 1345 RunHtmlTest(FILE_PATH_LITERAL("wbr.html"));
1342 } 1346 }
1343 1347
1344 } // namespace content 1348 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/accessibility/browser_accessibility_win.cc ('k') | content/renderer/accessibility/blink_ax_enum_conversion.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698