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

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

Issue 638103003: ARIA role region is not exposed correct with MSAA+IA2 role (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git/+/master
Patch Set: Created 6 years, 2 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/files/file_util.h" 10 #include "base/files/file_util.h"
(...skipping 451 matching lines...) Expand 10 before | Expand all | Expand 10 after
462 462
463 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaRow) { 463 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaRow) {
464 RunTest(FILE_PATH_LITERAL("aria-row.html")); 464 RunTest(FILE_PATH_LITERAL("aria-row.html"));
465 } 465 }
466 466
467 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, 467 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest,
468 AccessibilityAriaReadonly) { 468 AccessibilityAriaReadonly) {
469 RunTest(FILE_PATH_LITERAL("aria-readonly.html")); 469 RunTest(FILE_PATH_LITERAL("aria-readonly.html"));
470 } 470 }
471 471
472 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaRegion) {
473 RunTest(FILE_PATH_LITERAL("aria-region.html"));
474 }
475
472 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaSort) { 476 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaSort) {
473 RunTest(FILE_PATH_LITERAL("aria-sort.html")); 477 RunTest(FILE_PATH_LITERAL("aria-sort.html"));
474 } 478 }
475 479
476 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, 480 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest,
477 AccessibilityAriaSpinButton) { 481 AccessibilityAriaSpinButton) {
478 RunTest(FILE_PATH_LITERAL("aria-spinbutton.html")); 482 RunTest(FILE_PATH_LITERAL("aria-spinbutton.html"));
479 } 483 }
480 484
481 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaTimer) { 485 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaTimer) {
(...skipping 335 matching lines...) Expand 10 before | Expand all | Expand 10 after
817 } 821 }
818 822
819 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityParam) { 823 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityParam) {
820 RunTest(FILE_PATH_LITERAL("param.html")); 824 RunTest(FILE_PATH_LITERAL("param.html"));
821 } 825 }
822 826
823 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityQ) { 827 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityQ) {
824 RunTest(FILE_PATH_LITERAL("q.html")); 828 RunTest(FILE_PATH_LITERAL("q.html"));
825 } 829 }
826 830
827 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityRegion) { 831 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilitySection) {
828 RunTest(FILE_PATH_LITERAL("region.html")); 832 RunTest(FILE_PATH_LITERAL("section.html"));
829 } 833 }
830 834
831 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilitySelect) { 835 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilitySelect) {
832 RunTest(FILE_PATH_LITERAL("select.html")); 836 RunTest(FILE_PATH_LITERAL("select.html"));
833 } 837 }
834 838
835 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilitySource) { 839 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilitySource) {
836 RunTest(FILE_PATH_LITERAL("source.html")); 840 RunTest(FILE_PATH_LITERAL("source.html"));
837 } 841 }
838 842
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
876 880
877 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityUl) { 881 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityUl) {
878 RunTest(FILE_PATH_LITERAL("ul.html")); 882 RunTest(FILE_PATH_LITERAL("ul.html"));
879 } 883 }
880 884
881 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { 885 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) {
882 RunTest(FILE_PATH_LITERAL("wbr.html")); 886 RunTest(FILE_PATH_LITERAL("wbr.html"));
883 } 887 }
884 888
885 } // namespace content 889 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698