| 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 778 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 789 | 789 |
| 790 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityObject) { | 790 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityObject) { |
| 791 RunTest(FILE_PATH_LITERAL("object.html")); | 791 RunTest(FILE_PATH_LITERAL("object.html")); |
| 792 } | 792 } |
| 793 | 793 |
| 794 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 794 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
| 795 AccessibilityOptionindatalist) { | 795 AccessibilityOptionindatalist) { |
| 796 RunTest(FILE_PATH_LITERAL("option-in-datalist.html")); | 796 RunTest(FILE_PATH_LITERAL("option-in-datalist.html")); |
| 797 } | 797 } |
| 798 | 798 |
| 799 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityOutput) { |
| 800 RunTest(FILE_PATH_LITERAL("output.html")); |
| 801 } |
| 802 |
| 799 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityP) { | 803 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityP) { |
| 800 RunTest(FILE_PATH_LITERAL("p.html")); | 804 RunTest(FILE_PATH_LITERAL("p.html")); |
| 801 } | 805 } |
| 802 | 806 |
| 803 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityParam) { | 807 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityParam) { |
| 804 RunTest(FILE_PATH_LITERAL("param.html")); | 808 RunTest(FILE_PATH_LITERAL("param.html")); |
| 805 } | 809 } |
| 806 | 810 |
| 807 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityQ) { | 811 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityQ) { |
| 808 RunTest(FILE_PATH_LITERAL("q.html")); | 812 RunTest(FILE_PATH_LITERAL("q.html")); |
| (...skipping 51 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 |