| 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 657 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 668 } | 668 } |
| 669 | 669 |
| 670 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityBlockquote) { | 670 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityBlockquote) { |
| 671 RunTest(FILE_PATH_LITERAL("blockquote.html")); | 671 RunTest(FILE_PATH_LITERAL("blockquote.html")); |
| 672 } | 672 } |
| 673 | 673 |
| 674 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityBody) { | 674 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityBody) { |
| 675 RunTest(FILE_PATH_LITERAL("body.html")); | 675 RunTest(FILE_PATH_LITERAL("body.html")); |
| 676 } | 676 } |
| 677 | 677 |
| 678 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityBR) { | 678 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityBR) { |
| 679 RunTest(FILE_PATH_LITERAL("br.html")); | 679 RunTest(FILE_PATH_LITERAL("br.html")); |
| 680 } | 680 } |
| 681 | 681 |
| 682 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityButton) { | 682 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityButton) { |
| 683 RunTest(FILE_PATH_LITERAL("button.html")); | 683 RunTest(FILE_PATH_LITERAL("button.html")); |
| 684 } | 684 } |
| 685 | 685 |
| 686 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityButtonNameCalc) { | 686 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityButtonNameCalc) { |
| 687 RunTest(FILE_PATH_LITERAL("button-name-calc.html")); | 687 RunTest(FILE_PATH_LITERAL("button-name-calc.html")); |
| 688 } | 688 } |
| (...skipping 459 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1148 | 1148 |
| 1149 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityVar) { | 1149 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityVar) { |
| 1150 RunTest(FILE_PATH_LITERAL("var.html")); | 1150 RunTest(FILE_PATH_LITERAL("var.html")); |
| 1151 } | 1151 } |
| 1152 | 1152 |
| 1153 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { | 1153 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { |
| 1154 RunTest(FILE_PATH_LITERAL("wbr.html")); | 1154 RunTest(FILE_PATH_LITERAL("wbr.html")); |
| 1155 } | 1155 } |
| 1156 | 1156 |
| 1157 } // namespace content | 1157 } // namespace content |
| OLD | NEW |