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 861 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
872 #else | 872 #else |
873 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputMonth) { | 873 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputMonth) { |
874 RunTest(FILE_PATH_LITERAL("input-month.html")); | 874 RunTest(FILE_PATH_LITERAL("input-month.html")); |
875 } | 875 } |
876 #endif | 876 #endif |
877 | 877 |
878 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputRadio) { | 878 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputRadio) { |
879 RunTest(FILE_PATH_LITERAL("input-radio.html")); | 879 RunTest(FILE_PATH_LITERAL("input-radio.html")); |
880 } | 880 } |
881 | 881 |
| 882 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
| 883 AccessibilityInputRadioInMenu) { |
| 884 RunTest(FILE_PATH_LITERAL("input-radio-in-menu.html")); |
| 885 } |
| 886 |
882 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputRange) { | 887 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputRange) { |
883 RunTest(FILE_PATH_LITERAL("input-range.html")); | 888 RunTest(FILE_PATH_LITERAL("input-range.html")); |
884 } | 889 } |
885 | 890 |
886 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputReset) { | 891 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputReset) { |
887 RunTest(FILE_PATH_LITERAL("input-reset.html")); | 892 RunTest(FILE_PATH_LITERAL("input-reset.html")); |
888 } | 893 } |
889 | 894 |
890 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputSearch) { | 895 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputSearch) { |
891 RunTest(FILE_PATH_LITERAL("input-search.html")); | 896 RunTest(FILE_PATH_LITERAL("input-search.html")); |
(...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1148 | 1153 |
1149 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityVar) { | 1154 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityVar) { |
1150 RunTest(FILE_PATH_LITERAL("var.html")); | 1155 RunTest(FILE_PATH_LITERAL("var.html")); |
1151 } | 1156 } |
1152 | 1157 |
1153 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { | 1158 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { |
1154 RunTest(FILE_PATH_LITERAL("wbr.html")); | 1159 RunTest(FILE_PATH_LITERAL("wbr.html")); |
1155 } | 1160 } |
1156 | 1161 |
1157 } // namespace content | 1162 } // namespace content |
OLD | NEW |