| 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 814 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 825 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 825 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 
| 826                        DISABLED_AccessibilityInputMonth) { | 826                        DISABLED_AccessibilityInputMonth) { | 
| 827   RunHtmlTest(FILE_PATH_LITERAL("input-month.html")); | 827   RunHtmlTest(FILE_PATH_LITERAL("input-month.html")); | 
| 828 } | 828 } | 
| 829 #else | 829 #else | 
| 830 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputMonth) { | 830 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputMonth) { | 
| 831   RunHtmlTest(FILE_PATH_LITERAL("input-month.html")); | 831   RunHtmlTest(FILE_PATH_LITERAL("input-month.html")); | 
| 832 } | 832 } | 
| 833 #endif | 833 #endif | 
| 834 | 834 | 
| 835 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputPassword) { | 835 // crbug.com/84250 | 
|  | 836 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 
|  | 837     DISABLED_AccessibilityInputPassword) { | 
| 836   RunHtmlTest(FILE_PATH_LITERAL("input-password.html")); | 838   RunHtmlTest(FILE_PATH_LITERAL("input-password.html")); | 
| 837 } | 839 } | 
| 838 | 840 | 
| 839 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputRadio) { | 841 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputRadio) { | 
| 840   RunHtmlTest(FILE_PATH_LITERAL("input-radio.html")); | 842   RunHtmlTest(FILE_PATH_LITERAL("input-radio.html")); | 
| 841 } | 843 } | 
| 842 | 844 | 
| 843 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 845 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 
| 844                       AccessibilityInputRadioInMenu) { | 846                       AccessibilityInputRadioInMenu) { | 
| 845   RunHtmlTest(FILE_PATH_LITERAL("input-radio-in-menu.html")); | 847   RunHtmlTest(FILE_PATH_LITERAL("input-radio-in-menu.html")); | 
| (...skipping 302 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 1148 // crbug.com/281952 | 1150 // crbug.com/281952 | 
| 1149 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityVideo) { | 1151 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityVideo) { | 
| 1150   RunHtmlTest(FILE_PATH_LITERAL("video.html")); | 1152   RunHtmlTest(FILE_PATH_LITERAL("video.html")); | 
| 1151 } | 1153 } | 
| 1152 | 1154 | 
| 1153 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { | 1155 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { | 
| 1154   RunHtmlTest(FILE_PATH_LITERAL("wbr.html")); | 1156   RunHtmlTest(FILE_PATH_LITERAL("wbr.html")); | 
| 1155 } | 1157 } | 
| 1156 | 1158 | 
| 1157 }  // namespace content | 1159 }  // namespace content | 
| OLD | NEW | 
|---|