| 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 782 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 793 } | 793 } |
| 794 | 794 |
| 795 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityLabel) { | 795 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityLabel) { |
| 796 RunHtmlTest(FILE_PATH_LITERAL("label.html")); | 796 RunHtmlTest(FILE_PATH_LITERAL("label.html")); |
| 797 } | 797 } |
| 798 | 798 |
| 799 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityLandmark) { | 799 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityLandmark) { |
| 800 RunHtmlTest(FILE_PATH_LITERAL("landmark.html")); | 800 RunHtmlTest(FILE_PATH_LITERAL("landmark.html")); |
| 801 } | 801 } |
| 802 | 802 |
| 803 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 803 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityLegend) { |
| 804 DISABLED_AccessibilityLegend) { | |
| 805 RunHtmlTest(FILE_PATH_LITERAL("legend.html")); | 804 RunHtmlTest(FILE_PATH_LITERAL("legend.html")); |
| 806 } | 805 } |
| 807 | 806 |
| 808 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityLink) { | 807 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityLink) { |
| 809 RunHtmlTest(FILE_PATH_LITERAL("link.html")); | 808 RunHtmlTest(FILE_PATH_LITERAL("link.html")); |
| 810 } | 809 } |
| 811 | 810 |
| 812 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityList) { | 811 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityList) { |
| 813 RunHtmlTest(FILE_PATH_LITERAL("list.html")); | 812 RunHtmlTest(FILE_PATH_LITERAL("list.html")); |
| 814 } | 813 } |
| (...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1002 | 1001 |
| 1003 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityVar) { | 1002 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityVar) { |
| 1004 RunHtmlTest(FILE_PATH_LITERAL("var.html")); | 1003 RunHtmlTest(FILE_PATH_LITERAL("var.html")); |
| 1005 } | 1004 } |
| 1006 | 1005 |
| 1007 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { | 1006 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { |
| 1008 RunHtmlTest(FILE_PATH_LITERAL("wbr.html")); | 1007 RunHtmlTest(FILE_PATH_LITERAL("wbr.html")); |
| 1009 } | 1008 } |
| 1010 | 1009 |
| 1011 } // namespace content | 1010 } // namespace content |
| OLD | NEW |