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

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

Issue 823293003: Disable AX TCs related to Table Header (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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 489 matching lines...) Expand 10 before | Expand all | Expand 10 after
500 } 500 }
501 501
502 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityButtonNameCalc) { 502 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityButtonNameCalc) {
503 RunHtmlTest(FILE_PATH_LITERAL("button-name-calc.html")); 503 RunHtmlTest(FILE_PATH_LITERAL("button-name-calc.html"));
504 } 504 }
505 505
506 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityCanvas) { 506 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityCanvas) {
507 RunHtmlTest(FILE_PATH_LITERAL("canvas.html")); 507 RunHtmlTest(FILE_PATH_LITERAL("canvas.html"));
508 } 508 }
509 509
510 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityCaption) { 510 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest,
511 DISABLED_AccessibilityCaption) {
511 RunHtmlTest(FILE_PATH_LITERAL("caption.html")); 512 RunHtmlTest(FILE_PATH_LITERAL("caption.html"));
512 } 513 }
513 514
514 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, 515 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest,
515 AccessibilityCheckboxNameCalc) { 516 AccessibilityCheckboxNameCalc) {
516 RunHtmlTest(FILE_PATH_LITERAL("checkbox-name-calc.html")); 517 RunHtmlTest(FILE_PATH_LITERAL("checkbox-name-calc.html"));
517 } 518 }
518 519
519 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityCite) { 520 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityCite) {
520 RunHtmlTest(FILE_PATH_LITERAL("cite.html")); 521 RunHtmlTest(FILE_PATH_LITERAL("cite.html"));
(...skipping 414 matching lines...) Expand 10 before | Expand all | Expand 10 after
935 } 936 }
936 937
937 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilitySvg) { 938 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilitySvg) {
938 RunHtmlTest(FILE_PATH_LITERAL("svg.html")); 939 RunHtmlTest(FILE_PATH_LITERAL("svg.html"));
939 } 940 }
940 941
941 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityTab) { 942 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityTab) {
942 RunHtmlTest(FILE_PATH_LITERAL("tab.html")); 943 RunHtmlTest(FILE_PATH_LITERAL("tab.html"));
943 } 944 }
944 945
945 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityTableSimple) { 946 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest,
947 DISABLED_AccessibilityTableSimple) {
946 RunHtmlTest(FILE_PATH_LITERAL("table-simple.html")); 948 RunHtmlTest(FILE_PATH_LITERAL("table-simple.html"));
947 } 949 }
948 950
949 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, 951 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest,
950 AccessibilityTableThRowHeader) { 952 DISABLED_AccessibilityTableThRowHeader) {
951 RunHtmlTest(FILE_PATH_LITERAL("table-th-rowheader.html")); 953 RunHtmlTest(FILE_PATH_LITERAL("table-th-rowheader.html"));
952 } 954 }
953 955
954 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, 956 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest,
955 AccessibilityTableTbodyTfoot) { 957 DISABLED_AccessibilityTableTbodyTfoot) {
956 RunHtmlTest(FILE_PATH_LITERAL("table-thead-tbody-tfoot.html")); 958 RunHtmlTest(FILE_PATH_LITERAL("table-thead-tbody-tfoot.html"));
957 } 959 }
958 960
959 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityTableSpans) { 961 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityTableSpans) {
960 RunHtmlTest(FILE_PATH_LITERAL("table-spans.html")); 962 RunHtmlTest(FILE_PATH_LITERAL("table-spans.html"));
961 } 963 }
962 964
963 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityTextArea) { 965 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityTextArea) {
964 RunHtmlTest(FILE_PATH_LITERAL("textarea.html")); 966 RunHtmlTest(FILE_PATH_LITERAL("textarea.html"));
965 } 967 }
(...skipping 16 matching lines...) Expand all
982 984
983 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityVar) { 985 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityVar) {
984 RunHtmlTest(FILE_PATH_LITERAL("var.html")); 986 RunHtmlTest(FILE_PATH_LITERAL("var.html"));
985 } 987 }
986 988
987 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { 989 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) {
988 RunHtmlTest(FILE_PATH_LITERAL("wbr.html")); 990 RunHtmlTest(FILE_PATH_LITERAL("wbr.html"));
989 } 991 }
990 992
991 } // namespace content 993 } // namespace content
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698