| 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 875 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 886 | 886 |
| 887 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputText) { | 887 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputText) { |
| 888 RunHtmlTest(FILE_PATH_LITERAL("input-text.html")); | 888 RunHtmlTest(FILE_PATH_LITERAL("input-text.html")); |
| 889 } | 889 } |
| 890 | 890 |
| 891 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 891 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
| 892 AccessibilityInputTextNameCalc) { | 892 AccessibilityInputTextNameCalc) { |
| 893 RunHtmlTest(FILE_PATH_LITERAL("input-text-name-calc.html")); | 893 RunHtmlTest(FILE_PATH_LITERAL("input-text-name-calc.html")); |
| 894 } | 894 } |
| 895 | 895 |
| 896 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputTextValue) { | 896 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
| 897 DISABLED_AccessibilityInputTextValue) { |
| 897 RunHtmlTest(FILE_PATH_LITERAL("input-text-value.html")); | 898 RunHtmlTest(FILE_PATH_LITERAL("input-text-value.html")); |
| 898 } | 899 } |
| 899 | 900 |
| 900 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputTime) { | 901 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputTime) { |
| 901 RunHtmlTest(FILE_PATH_LITERAL("input-time.html")); | 902 RunHtmlTest(FILE_PATH_LITERAL("input-time.html")); |
| 902 } | 903 } |
| 903 | 904 |
| 904 // crbug.com/98976 will cause new elements to be added to the Blink a11y tree | 905 // crbug.com/98976 will cause new elements to be added to the Blink a11y tree |
| 905 // Re-baseline after the Blink change goes in | 906 // Re-baseline after the Blink change goes in |
| 906 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 907 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
| (...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1158 // crbug.com/281952 | 1159 // crbug.com/281952 |
| 1159 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityVideo) { | 1160 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityVideo) { |
| 1160 RunHtmlTest(FILE_PATH_LITERAL("video.html")); | 1161 RunHtmlTest(FILE_PATH_LITERAL("video.html")); |
| 1161 } | 1162 } |
| 1162 | 1163 |
| 1163 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { | 1164 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { |
| 1164 RunHtmlTest(FILE_PATH_LITERAL("wbr.html")); | 1165 RunHtmlTest(FILE_PATH_LITERAL("wbr.html")); |
| 1165 } | 1166 } |
| 1166 | 1167 |
| 1167 } // namespace content | 1168 } // namespace content |
| OLD | NEW |