| 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 598 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 609 | 609 |
| 610 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 610 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
| 611 AccessibilityInputButtonInMenu) { | 611 AccessibilityInputButtonInMenu) { |
| 612 RunTest(FILE_PATH_LITERAL("input-button-in-menu.html")); | 612 RunTest(FILE_PATH_LITERAL("input-button-in-menu.html")); |
| 613 } | 613 } |
| 614 | 614 |
| 615 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputCheckBox) { | 615 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputCheckBox) { |
| 616 RunTest(FILE_PATH_LITERAL("input-checkbox.html")); | 616 RunTest(FILE_PATH_LITERAL("input-checkbox.html")); |
| 617 } | 617 } |
| 618 | 618 |
| 619 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
| 620 AccessibilityInputCheckBoxInMenu) { |
| 621 RunTest(FILE_PATH_LITERAL("input-checkbox-in-menu.html")); |
| 622 } |
| 623 |
| 619 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputColor) { | 624 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputColor) { |
| 620 RunTest(FILE_PATH_LITERAL("input-color.html")); | 625 RunTest(FILE_PATH_LITERAL("input-color.html")); |
| 621 } | 626 } |
| 622 | 627 |
| 623 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 628 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
| 624 AccessibilityInputImageButtonInMenu) { | 629 AccessibilityInputImageButtonInMenu) { |
| 625 RunTest(FILE_PATH_LITERAL("input-image-button-in-menu.html")); | 630 RunTest(FILE_PATH_LITERAL("input-image-button-in-menu.html")); |
| 626 } | 631 } |
| 627 | 632 |
| 628 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputRadio) { | 633 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputRadio) { |
| (...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 788 | 793 |
| 789 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityUl) { | 794 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityUl) { |
| 790 RunTest(FILE_PATH_LITERAL("ul.html")); | 795 RunTest(FILE_PATH_LITERAL("ul.html")); |
| 791 } | 796 } |
| 792 | 797 |
| 793 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { | 798 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { |
| 794 RunTest(FILE_PATH_LITERAL("wbr.html")); | 799 RunTest(FILE_PATH_LITERAL("wbr.html")); |
| 795 } | 800 } |
| 796 | 801 |
| 797 } // namespace content | 802 } // namespace content |
| OLD | NEW |