| 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 766 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 777 | 777 |
| 778 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputCheckBox) { | 778 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputCheckBox) { |
| 779 RunTest(FILE_PATH_LITERAL("input-checkbox.html")); | 779 RunTest(FILE_PATH_LITERAL("input-checkbox.html")); |
| 780 } | 780 } |
| 781 | 781 |
| 782 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 782 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
| 783 AccessibilityInputCheckBoxInMenu) { | 783 AccessibilityInputCheckBoxInMenu) { |
| 784 RunTest(FILE_PATH_LITERAL("input-checkbox-in-menu.html")); | 784 RunTest(FILE_PATH_LITERAL("input-checkbox-in-menu.html")); |
| 785 } | 785 } |
| 786 | 786 |
| 787 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputColor) { | 787 // http://crbug.com/378799 |
| 788 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
| 789 DISABLED_AccessibilityInputColor) { |
| 788 RunTest(FILE_PATH_LITERAL("input-color.html")); | 790 RunTest(FILE_PATH_LITERAL("input-color.html")); |
| 789 } | 791 } |
| 790 | 792 |
| 791 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputDate) { | 793 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputDate) { |
| 792 RunTest(FILE_PATH_LITERAL("input-date.html")); | 794 RunTest(FILE_PATH_LITERAL("input-date.html")); |
| 793 } | 795 } |
| 794 | 796 |
| 795 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputDateTime) { | 797 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputDateTime) { |
| 796 RunTest(FILE_PATH_LITERAL("input-datetime.html")); | 798 RunTest(FILE_PATH_LITERAL("input-datetime.html")); |
| 797 } | 799 } |
| (...skipping 22 matching lines...) Expand all Loading... |
| 820 #else | 822 #else |
| 821 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputMonth) { | 823 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputMonth) { |
| 822 RunTest(FILE_PATH_LITERAL("input-month.html")); | 824 RunTest(FILE_PATH_LITERAL("input-month.html")); |
| 823 } | 825 } |
| 824 #endif | 826 #endif |
| 825 | 827 |
| 826 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputRadio) { | 828 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputRadio) { |
| 827 RunTest(FILE_PATH_LITERAL("input-radio.html")); | 829 RunTest(FILE_PATH_LITERAL("input-radio.html")); |
| 828 } | 830 } |
| 829 | 831 |
| 830 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputRange) { | 832 // http://crbug.com/378799 |
| 833 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
| 834 DISABLED_AccessibilityInputRange) { |
| 831 RunTest(FILE_PATH_LITERAL("input-range.html")); | 835 RunTest(FILE_PATH_LITERAL("input-range.html")); |
| 832 } | 836 } |
| 833 | 837 |
| 834 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputReset) { | 838 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputReset) { |
| 835 RunTest(FILE_PATH_LITERAL("input-reset.html")); | 839 RunTest(FILE_PATH_LITERAL("input-reset.html")); |
| 836 } | 840 } |
| 837 | 841 |
| 838 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputSearch) { | 842 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputSearch) { |
| 839 RunTest(FILE_PATH_LITERAL("input-search.html")); | 843 RunTest(FILE_PATH_LITERAL("input-search.html")); |
| 840 } | 844 } |
| (...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1087 | 1091 |
| 1088 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityVar) { | 1092 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityVar) { |
| 1089 RunTest(FILE_PATH_LITERAL("var.html")); | 1093 RunTest(FILE_PATH_LITERAL("var.html")); |
| 1090 } | 1094 } |
| 1091 | 1095 |
| 1092 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { | 1096 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { |
| 1093 RunTest(FILE_PATH_LITERAL("wbr.html")); | 1097 RunTest(FILE_PATH_LITERAL("wbr.html")); |
| 1094 } | 1098 } |
| 1095 | 1099 |
| 1096 } // namespace content | 1100 } // namespace content |
| OLD | NEW |