| 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 711 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 722 } | 722 } |
| 723 | 723 |
| 724 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityLandmark) { | 724 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityLandmark) { |
| 725 RunTest(FILE_PATH_LITERAL("landmark.html")); | 725 RunTest(FILE_PATH_LITERAL("landmark.html")); |
| 726 } | 726 } |
| 727 | 727 |
| 728 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityLegend) { | 728 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityLegend) { |
| 729 RunTest(FILE_PATH_LITERAL("legend.html")); | 729 RunTest(FILE_PATH_LITERAL("legend.html")); |
| 730 } | 730 } |
| 731 | 731 |
| 732 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityList) { |
| 733 RunTest(FILE_PATH_LITERAL("list.html")); |
| 734 } |
| 735 |
| 732 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityListMarkers) { | 736 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityListMarkers) { |
| 733 RunTest(FILE_PATH_LITERAL("list-markers.html")); | 737 RunTest(FILE_PATH_LITERAL("list-markers.html")); |
| 734 } | 738 } |
| 735 | 739 |
| 736 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityMain) { | 740 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityMain) { |
| 737 RunTest(FILE_PATH_LITERAL("main.html")); | 741 RunTest(FILE_PATH_LITERAL("main.html")); |
| 738 } | 742 } |
| 739 | 743 |
| 740 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityMark) { | 744 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityMark) { |
| 741 RunTest(FILE_PATH_LITERAL("mark.html")); | 745 RunTest(FILE_PATH_LITERAL("mark.html")); |
| (...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 860 | 864 |
| 861 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityUl) { | 865 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityUl) { |
| 862 RunTest(FILE_PATH_LITERAL("ul.html")); | 866 RunTest(FILE_PATH_LITERAL("ul.html")); |
| 863 } | 867 } |
| 864 | 868 |
| 865 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { | 869 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { |
| 866 RunTest(FILE_PATH_LITERAL("wbr.html")); | 870 RunTest(FILE_PATH_LITERAL("wbr.html")); |
| 867 } | 871 } |
| 868 | 872 |
| 869 } // namespace content | 873 } // namespace content |
| OLD | NEW |