OLD | NEW |
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/files/file_util.h" | 10 #include "base/files/file_util.h" |
(...skipping 857 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
868 RunTest(FILE_PATH_LITERAL("input-text-value.html")); | 868 RunTest(FILE_PATH_LITERAL("input-text-value.html")); |
869 } | 869 } |
870 | 870 |
871 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputTime) { | 871 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputTime) { |
872 RunTest(FILE_PATH_LITERAL("input-time.html")); | 872 RunTest(FILE_PATH_LITERAL("input-time.html")); |
873 } | 873 } |
874 | 874 |
875 // crbug.com/98976 will cause new elements to be added to the Blink a11y tree | 875 // crbug.com/98976 will cause new elements to be added to the Blink a11y tree |
876 // Re-baseline after the Blink change goes in | 876 // Re-baseline after the Blink change goes in |
877 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 877 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
878 AccessibilityInputTypes) { | 878 DISABLED_AccessibilityInputTypes) { |
879 RunTest(FILE_PATH_LITERAL("input-types.html")); | 879 RunTest(FILE_PATH_LITERAL("input-types.html")); |
880 } | 880 } |
881 | 881 |
882 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputUrl) { | 882 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputUrl) { |
883 RunTest(FILE_PATH_LITERAL("input-url.html")); | 883 RunTest(FILE_PATH_LITERAL("input-url.html")); |
884 } | 884 } |
885 | 885 |
886 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputWeek) { | 886 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputWeek) { |
887 RunTest(FILE_PATH_LITERAL("input-week.html")); | 887 RunTest(FILE_PATH_LITERAL("input-week.html")); |
888 } | 888 } |
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
986 | 986 |
987 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityObject) { | 987 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityObject) { |
988 RunTest(FILE_PATH_LITERAL("object.html")); | 988 RunTest(FILE_PATH_LITERAL("object.html")); |
989 } | 989 } |
990 | 990 |
991 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 991 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
992 AccessibilityOptionindatalist) { | 992 AccessibilityOptionindatalist) { |
993 RunTest(FILE_PATH_LITERAL("option-in-datalist.html")); | 993 RunTest(FILE_PATH_LITERAL("option-in-datalist.html")); |
994 } | 994 } |
995 | 995 |
996 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityOutput) { | 996 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
| 997 DISABLED_AccessibilityOutput) { |
997 RunTest(FILE_PATH_LITERAL("output.html")); | 998 RunTest(FILE_PATH_LITERAL("output.html")); |
998 } | 999 } |
999 | 1000 |
1000 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityP) { | 1001 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityP) { |
1001 RunTest(FILE_PATH_LITERAL("p.html")); | 1002 RunTest(FILE_PATH_LITERAL("p.html")); |
1002 } | 1003 } |
1003 | 1004 |
1004 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityParam) { | 1005 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityParam) { |
1005 RunTest(FILE_PATH_LITERAL("param.html")); | 1006 RunTest(FILE_PATH_LITERAL("param.html")); |
1006 } | 1007 } |
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1103 | 1104 |
1104 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityVar) { | 1105 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityVar) { |
1105 RunTest(FILE_PATH_LITERAL("var.html")); | 1106 RunTest(FILE_PATH_LITERAL("var.html")); |
1106 } | 1107 } |
1107 | 1108 |
1108 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { | 1109 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { |
1109 RunTest(FILE_PATH_LITERAL("wbr.html")); | 1110 RunTest(FILE_PATH_LITERAL("wbr.html")); |
1110 } | 1111 } |
1111 | 1112 |
1112 } // namespace content | 1113 } // namespace content |
OLD | NEW |