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

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

Issue 845663002: On Android, links inside headings should be announced as headings by TalkBack (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Updating test case as per latest rebased code Created 5 years, 11 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 807 matching lines...) Expand 10 before | Expand all | Expand 10 after
818 } 818 }
819 819
820 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityLegend) { 820 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityLegend) {
821 RunHtmlTest(FILE_PATH_LITERAL("legend.html")); 821 RunHtmlTest(FILE_PATH_LITERAL("legend.html"));
822 } 822 }
823 823
824 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityLink) { 824 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityLink) {
825 RunHtmlTest(FILE_PATH_LITERAL("link.html")); 825 RunHtmlTest(FILE_PATH_LITERAL("link.html"));
826 } 826 }
827 827
828 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest,
829 AccessibilityLinkInsideHeading) {
830 RunHtmlTest(FILE_PATH_LITERAL("link-inside-heading.html"));
831 }
832
828 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityList) { 833 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityList) {
829 RunHtmlTest(FILE_PATH_LITERAL("list.html")); 834 RunHtmlTest(FILE_PATH_LITERAL("list.html"));
830 } 835 }
831 836
832 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityListMarkers) { 837 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityListMarkers) {
833 RunHtmlTest(FILE_PATH_LITERAL("list-markers.html")); 838 RunHtmlTest(FILE_PATH_LITERAL("list-markers.html"));
834 } 839 }
835 840
836 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityMain) { 841 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityMain) {
837 RunHtmlTest(FILE_PATH_LITERAL("main.html")); 842 RunHtmlTest(FILE_PATH_LITERAL("main.html"));
(...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after
1026 // crbug.com/281952 1031 // crbug.com/281952
1027 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityVideo) { 1032 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityVideo) {
1028 RunHtmlTest(FILE_PATH_LITERAL("video.html")); 1033 RunHtmlTest(FILE_PATH_LITERAL("video.html"));
1029 } 1034 }
1030 1035
1031 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { 1036 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) {
1032 RunHtmlTest(FILE_PATH_LITERAL("wbr.html")); 1037 RunHtmlTest(FILE_PATH_LITERAL("wbr.html"));
1033 } 1038 }
1034 1039
1035 } // namespace content 1040 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698