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

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: Updating aria-flowto.html 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 447 matching lines...) Expand 10 before | Expand all | Expand 10 after
458 458
459 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaRow) { 459 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaRow) {
460 RunTest(FILE_PATH_LITERAL("aria-row.html")); 460 RunTest(FILE_PATH_LITERAL("aria-row.html"));
461 } 461 }
462 462
463 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, 463 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest,
464 AccessibilityAriaReadonly) { 464 AccessibilityAriaReadonly) {
465 RunTest(FILE_PATH_LITERAL("aria-readonly.html")); 465 RunTest(FILE_PATH_LITERAL("aria-readonly.html"));
466 } 466 }
467 467
468 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaRegion) {
469 RunTest(FILE_PATH_LITERAL("aria-region.html"));
470 }
471
468 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaSort) { 472 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaSort) {
469 RunTest(FILE_PATH_LITERAL("aria-sort.html")); 473 RunTest(FILE_PATH_LITERAL("aria-sort.html"));
470 } 474 }
471 475
472 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, 476 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest,
473 AccessibilityAriaSpinButton) { 477 AccessibilityAriaSpinButton) {
474 RunTest(FILE_PATH_LITERAL("aria-spinbutton.html")); 478 RunTest(FILE_PATH_LITERAL("aria-spinbutton.html"));
475 } 479 }
476 480
477 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaTimer) { 481 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaTimer) {
(...skipping 323 matching lines...) Expand 10 before | Expand all | Expand 10 after
801 } 805 }
802 806
803 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityParam) { 807 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityParam) {
804 RunTest(FILE_PATH_LITERAL("param.html")); 808 RunTest(FILE_PATH_LITERAL("param.html"));
805 } 809 }
806 810
807 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityQ) { 811 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityQ) {
808 RunTest(FILE_PATH_LITERAL("q.html")); 812 RunTest(FILE_PATH_LITERAL("q.html"));
809 } 813 }
810 814
811 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityRegion) { 815 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilitySection) {
812 RunTest(FILE_PATH_LITERAL("region.html")); 816 RunTest(FILE_PATH_LITERAL("section.html"));
813 } 817 }
814 818
815 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilitySelect) { 819 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilitySelect) {
816 RunTest(FILE_PATH_LITERAL("select.html")); 820 RunTest(FILE_PATH_LITERAL("select.html"));
817 } 821 }
818 822
819 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilitySource) { 823 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilitySource) {
820 RunTest(FILE_PATH_LITERAL("source.html")); 824 RunTest(FILE_PATH_LITERAL("source.html"));
821 } 825 }
822 826
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
860 864
861 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityUl) { 865 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityUl) {
862 RunTest(FILE_PATH_LITERAL("ul.html")); 866 RunTest(FILE_PATH_LITERAL("ul.html"));
863 } 867 }
864 868
865 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { 869 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) {
866 RunTest(FILE_PATH_LITERAL("wbr.html")); 870 RunTest(FILE_PATH_LITERAL("wbr.html"));
867 } 871 }
868 872
869 } // namespace content 873 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698