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

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

Issue 862503002: Revert of 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: 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
833 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityList) { 828 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityList) {
834 RunHtmlTest(FILE_PATH_LITERAL("list.html")); 829 RunHtmlTest(FILE_PATH_LITERAL("list.html"));
835 } 830 }
836 831
837 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityListMarkers) { 832 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityListMarkers) {
838 RunHtmlTest(FILE_PATH_LITERAL("list-markers.html")); 833 RunHtmlTest(FILE_PATH_LITERAL("list-markers.html"));
839 } 834 }
840 835
841 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityMain) { 836 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityMain) {
842 RunHtmlTest(FILE_PATH_LITERAL("main.html")); 837 RunHtmlTest(FILE_PATH_LITERAL("main.html"));
(...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after
1031 // crbug.com/281952 1026 // crbug.com/281952
1032 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityVideo) { 1027 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityVideo) {
1033 RunHtmlTest(FILE_PATH_LITERAL("video.html")); 1028 RunHtmlTest(FILE_PATH_LITERAL("video.html"));
1034 } 1029 }
1035 1030
1036 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { 1031 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) {
1037 RunHtmlTest(FILE_PATH_LITERAL("wbr.html")); 1032 RunHtmlTest(FILE_PATH_LITERAL("wbr.html"));
1038 } 1033 }
1039 1034
1040 } // namespace content 1035 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698