| 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 854 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 865 } | 865 } |
| 866 | 866 |
| 867 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityP) { | 867 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityP) { |
| 868 RunTest(FILE_PATH_LITERAL("p.html")); | 868 RunTest(FILE_PATH_LITERAL("p.html")); |
| 869 } | 869 } |
| 870 | 870 |
| 871 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityParam) { | 871 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityParam) { |
| 872 RunTest(FILE_PATH_LITERAL("param.html")); | 872 RunTest(FILE_PATH_LITERAL("param.html")); |
| 873 } | 873 } |
| 874 | 874 |
| 875 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityPre) { |
| 876 RunTest(FILE_PATH_LITERAL("pre.html")); |
| 877 } |
| 878 |
| 875 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityQ) { | 879 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityQ) { |
| 876 RunTest(FILE_PATH_LITERAL("q.html")); | 880 RunTest(FILE_PATH_LITERAL("q.html")); |
| 877 } | 881 } |
| 878 | 882 |
| 879 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilitySection) { | 883 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilitySection) { |
| 880 RunTest(FILE_PATH_LITERAL("section.html")); | 884 RunTest(FILE_PATH_LITERAL("section.html")); |
| 881 } | 885 } |
| 882 | 886 |
| 883 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilitySelect) { | 887 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilitySelect) { |
| 884 RunTest(FILE_PATH_LITERAL("select.html")); | 888 RunTest(FILE_PATH_LITERAL("select.html")); |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 936 | 940 |
| 937 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityUl) { | 941 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityUl) { |
| 938 RunTest(FILE_PATH_LITERAL("ul.html")); | 942 RunTest(FILE_PATH_LITERAL("ul.html")); |
| 939 } | 943 } |
| 940 | 944 |
| 941 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { | 945 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { |
| 942 RunTest(FILE_PATH_LITERAL("wbr.html")); | 946 RunTest(FILE_PATH_LITERAL("wbr.html")); |
| 943 } | 947 } |
| 944 | 948 |
| 945 } // namespace content | 949 } // namespace content |
| OLD | NEW |