| 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 807 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 818 } | 818 } |
| 819 | 819 |
| 820 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityLegend) { | 820 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityLegend) { |
| 821 RunHtmlTest(FILE_PATH_LITERAL("legend.html")); | 821 RunHtmlTest(FILE_PATH_LITERAL("legend.html")); |
| 822 } | 822 } |
| 823 | 823 |
| 824 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityLink) { | 824 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityLink) { |
| 825 RunHtmlTest(FILE_PATH_LITERAL("link.html")); | 825 RunHtmlTest(FILE_PATH_LITERAL("link.html")); |
| 826 } | 826 } |
| 827 | 827 |
| 828 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
| 829 AccessibilityLinkInsideHeading) { |
| 830 RunHtmlTest(FILE_PATH_LITERAL("link-inside-heading.html")); |
| 831 } |
| 832 |
| 828 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityList) { | 833 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityList) { |
| 829 RunHtmlTest(FILE_PATH_LITERAL("list.html")); | 834 RunHtmlTest(FILE_PATH_LITERAL("list.html")); |
| 830 } | 835 } |
| 831 | 836 |
| 832 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityListMarkers) { | 837 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityListMarkers) { |
| 833 RunHtmlTest(FILE_PATH_LITERAL("list-markers.html")); | 838 RunHtmlTest(FILE_PATH_LITERAL("list-markers.html")); |
| 834 } | 839 } |
| 835 | 840 |
| 836 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityMain) { | 841 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityMain) { |
| 837 RunHtmlTest(FILE_PATH_LITERAL("main.html")); | 842 RunHtmlTest(FILE_PATH_LITERAL("main.html")); |
| (...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1026 // crbug.com/281952 | 1031 // crbug.com/281952 |
| 1027 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityVideo) { | 1032 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityVideo) { |
| 1028 RunHtmlTest(FILE_PATH_LITERAL("video.html")); | 1033 RunHtmlTest(FILE_PATH_LITERAL("video.html")); |
| 1029 } | 1034 } |
| 1030 | 1035 |
| 1031 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { | 1036 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { |
| 1032 RunHtmlTest(FILE_PATH_LITERAL("wbr.html")); | 1037 RunHtmlTest(FILE_PATH_LITERAL("wbr.html")); |
| 1033 } | 1038 } |
| 1034 | 1039 |
| 1035 } // namespace content | 1040 } // namespace content |
| OLD | NEW |