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

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

Issue 837183002: Add a helper function and update test results with ax role of table header. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update TC 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 943 matching lines...) Expand 10 before | Expand all | Expand 10 after
954 } 954 }
955 955
956 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilitySvg) { 956 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilitySvg) {
957 RunHtmlTest(FILE_PATH_LITERAL("svg.html")); 957 RunHtmlTest(FILE_PATH_LITERAL("svg.html"));
958 } 958 }
959 959
960 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityTab) { 960 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityTab) {
961 RunHtmlTest(FILE_PATH_LITERAL("tab.html")); 961 RunHtmlTest(FILE_PATH_LITERAL("tab.html"));
962 } 962 }
963 963
964 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, 964 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityTableSimple) {
965 DISABLED_AccessibilityTableSimple) {
966 RunHtmlTest(FILE_PATH_LITERAL("table-simple.html")); 965 RunHtmlTest(FILE_PATH_LITERAL("table-simple.html"));
967 } 966 }
968 967
969 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, 968 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest,
970 DISABLED_AccessibilityTableThRowHeader) { 969 AccessibilityTableThRowHeader) {
971 RunHtmlTest(FILE_PATH_LITERAL("table-th-rowheader.html")); 970 RunHtmlTest(FILE_PATH_LITERAL("table-th-rowheader.html"));
972 } 971 }
973 972
974 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, 973 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest,
975 DISABLED_AccessibilityTableTbodyTfoot) { 974 AccessibilityTableTbodyTfoot) {
976 RunHtmlTest(FILE_PATH_LITERAL("table-thead-tbody-tfoot.html")); 975 RunHtmlTest(FILE_PATH_LITERAL("table-thead-tbody-tfoot.html"));
977 } 976 }
978 977
979 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityTableSpans) { 978 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityTableSpans) {
980 RunHtmlTest(FILE_PATH_LITERAL("table-spans.html")); 979 RunHtmlTest(FILE_PATH_LITERAL("table-spans.html"));
981 } 980 }
982 981
983 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityTextArea) { 982 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityTextArea) {
984 RunHtmlTest(FILE_PATH_LITERAL("textarea.html")); 983 RunHtmlTest(FILE_PATH_LITERAL("textarea.html"));
985 } 984 }
(...skipping 16 matching lines...) Expand all
1002 1001
1003 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityVar) { 1002 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityVar) {
1004 RunHtmlTest(FILE_PATH_LITERAL("var.html")); 1003 RunHtmlTest(FILE_PATH_LITERAL("var.html"));
1005 } 1004 }
1006 1005
1007 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { 1006 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) {
1008 RunHtmlTest(FILE_PATH_LITERAL("wbr.html")); 1007 RunHtmlTest(FILE_PATH_LITERAL("wbr.html"));
1009 } 1008 }
1010 1009
1011 } // namespace content 1010 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698