| 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 830 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 841 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 841 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
| 842 AccessibilityIframeCoordinatesCrossProcess) { | 842 AccessibilityIframeCoordinatesCrossProcess) { |
| 843 RunHtmlTest(FILE_PATH_LITERAL("iframe-coordinates-cross-process.html")); | 843 RunHtmlTest(FILE_PATH_LITERAL("iframe-coordinates-cross-process.html")); |
| 844 } | 844 } |
| 845 | 845 |
| 846 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 846 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
| 847 AccessibilityIframePresentational) { | 847 AccessibilityIframePresentational) { |
| 848 RunHtmlTest(FILE_PATH_LITERAL("iframe-presentational.html")); | 848 RunHtmlTest(FILE_PATH_LITERAL("iframe-presentational.html")); |
| 849 } | 849 } |
| 850 | 850 |
| 851 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
| 852 AccessibilityIframeTransform) { |
| 853 RunHtmlTest(FILE_PATH_LITERAL("iframe-transform.html")); |
| 854 } |
| 855 |
| 856 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
| 857 AccessibilityIframeTransformCrossProcess) { |
| 858 RunHtmlTest(FILE_PATH_LITERAL("iframe-transform-cross-process.html")); |
| 859 } |
| 860 |
| 851 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityImg) { | 861 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityImg) { |
| 852 RunHtmlTest(FILE_PATH_LITERAL("img.html")); | 862 RunHtmlTest(FILE_PATH_LITERAL("img.html")); |
| 853 } | 863 } |
| 854 | 864 |
| 855 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityImgEmptyAlt) { | 865 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityImgEmptyAlt) { |
| 856 RunHtmlTest(FILE_PATH_LITERAL("img-empty-alt.html")); | 866 RunHtmlTest(FILE_PATH_LITERAL("img-empty-alt.html")); |
| 857 } | 867 } |
| 858 | 868 |
| 859 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputButton) { | 869 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputButton) { |
| 860 RunHtmlTest(FILE_PATH_LITERAL("input-button.html")); | 870 RunHtmlTest(FILE_PATH_LITERAL("input-button.html")); |
| (...skipping 408 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1269 // crbug.com/281952 | 1279 // crbug.com/281952 |
| 1270 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityVideo) { | 1280 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityVideo) { |
| 1271 RunHtmlTest(FILE_PATH_LITERAL("video.html")); | 1281 RunHtmlTest(FILE_PATH_LITERAL("video.html")); |
| 1272 } | 1282 } |
| 1273 | 1283 |
| 1274 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { | 1284 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { |
| 1275 RunHtmlTest(FILE_PATH_LITERAL("wbr.html")); | 1285 RunHtmlTest(FILE_PATH_LITERAL("wbr.html")); |
| 1276 } | 1286 } |
| 1277 | 1287 |
| 1278 } // namespace content | 1288 } // namespace content |
| OLD | NEW |