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/path_service.h" | 10 #include "base/path_service.h" |
(...skipping 820 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
831 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 831 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
832 DISABLED_AccessibilityInputMonth) { | 832 DISABLED_AccessibilityInputMonth) { |
833 RunHtmlTest(FILE_PATH_LITERAL("input-month.html")); | 833 RunHtmlTest(FILE_PATH_LITERAL("input-month.html")); |
834 } | 834 } |
835 #else | 835 #else |
836 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputMonth) { | 836 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputMonth) { |
837 RunHtmlTest(FILE_PATH_LITERAL("input-month.html")); | 837 RunHtmlTest(FILE_PATH_LITERAL("input-month.html")); |
838 } | 838 } |
839 #endif | 839 #endif |
840 | 840 |
841 // crbug.com/84250 | 841 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputPassword) { |
842 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | |
843 DISABLED_AccessibilityInputPassword) { | |
844 RunHtmlTest(FILE_PATH_LITERAL("input-password.html")); | 842 RunHtmlTest(FILE_PATH_LITERAL("input-password.html")); |
845 } | 843 } |
846 | 844 |
847 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputRadio) { | 845 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputRadio) { |
848 RunHtmlTest(FILE_PATH_LITERAL("input-radio.html")); | 846 RunHtmlTest(FILE_PATH_LITERAL("input-radio.html")); |
849 } | 847 } |
850 | 848 |
851 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 849 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
852 AccessibilityInputRadioInMenu) { | 850 AccessibilityInputRadioInMenu) { |
853 RunHtmlTest(FILE_PATH_LITERAL("input-radio-in-menu.html")); | 851 RunHtmlTest(FILE_PATH_LITERAL("input-radio-in-menu.html")); |
(...skipping 302 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1156 // crbug.com/281952 | 1154 // crbug.com/281952 |
1157 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityVideo) { | 1155 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityVideo) { |
1158 RunHtmlTest(FILE_PATH_LITERAL("video.html")); | 1156 RunHtmlTest(FILE_PATH_LITERAL("video.html")); |
1159 } | 1157 } |
1160 | 1158 |
1161 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { | 1159 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { |
1162 RunHtmlTest(FILE_PATH_LITERAL("wbr.html")); | 1160 RunHtmlTest(FILE_PATH_LITERAL("wbr.html")); |
1163 } | 1161 } |
1164 | 1162 |
1165 } // namespace content | 1163 } // namespace content |
OLD | NEW |