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

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 results for win and mac 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 790 matching lines...) Expand 10 before | Expand all | Expand 10 after
801 } 801 }
802 802
803 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityLegend) { 803 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityLegend) {
804 RunHtmlTest(FILE_PATH_LITERAL("legend.html")); 804 RunHtmlTest(FILE_PATH_LITERAL("legend.html"));
805 } 805 }
806 806
807 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityLink) { 807 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityLink) {
808 RunHtmlTest(FILE_PATH_LITERAL("link.html")); 808 RunHtmlTest(FILE_PATH_LITERAL("link.html"));
809 } 809 }
810 810
811 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest,
812 AccessibilityLinkInsideHeading) {
813 RunHtmlTest(FILE_PATH_LITERAL("link-inside-heading.html"));
814 }
815
811 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityList) { 816 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityList) {
812 RunHtmlTest(FILE_PATH_LITERAL("list.html")); 817 RunHtmlTest(FILE_PATH_LITERAL("list.html"));
813 } 818 }
814 819
815 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityListMarkers) { 820 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityListMarkers) {
816 RunHtmlTest(FILE_PATH_LITERAL("list-markers.html")); 821 RunHtmlTest(FILE_PATH_LITERAL("list-markers.html"));
817 } 822 }
818 823
819 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityMain) { 824 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityMain) {
820 RunHtmlTest(FILE_PATH_LITERAL("main.html")); 825 RunHtmlTest(FILE_PATH_LITERAL("main.html"));
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after
1001 1006
1002 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityVar) { 1007 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityVar) {
1003 RunHtmlTest(FILE_PATH_LITERAL("var.html")); 1008 RunHtmlTest(FILE_PATH_LITERAL("var.html"));
1004 } 1009 }
1005 1010
1006 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { 1011 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) {
1007 RunHtmlTest(FILE_PATH_LITERAL("wbr.html")); 1012 RunHtmlTest(FILE_PATH_LITERAL("wbr.html"));
1008 } 1013 }
1009 1014
1010 } // namespace content 1015 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698