| 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 603 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 614 | 614 |
| 615 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 615 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
| 616 AccessibilityInputButtonInMenu) { | 616 AccessibilityInputButtonInMenu) { |
| 617 RunTest(FILE_PATH_LITERAL("input-button-in-menu.html")); | 617 RunTest(FILE_PATH_LITERAL("input-button-in-menu.html")); |
| 618 } | 618 } |
| 619 | 619 |
| 620 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputCheckBox) { | 620 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputCheckBox) { |
| 621 RunTest(FILE_PATH_LITERAL("input-checkbox.html")); | 621 RunTest(FILE_PATH_LITERAL("input-checkbox.html")); |
| 622 } | 622 } |
| 623 | 623 |
| 624 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
| 625 AccessibilityInputCheckBoxInMenu) { |
| 626 RunTest(FILE_PATH_LITERAL("input-checkbox-in-menu.html")); |
| 627 } |
| 628 |
| 624 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputColor) { | 629 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputColor) { |
| 625 RunTest(FILE_PATH_LITERAL("input-color.html")); | 630 RunTest(FILE_PATH_LITERAL("input-color.html")); |
| 626 } | 631 } |
| 627 | 632 |
| 628 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 633 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
| 629 AccessibilityInputImageButtonInMenu) { | 634 AccessibilityInputImageButtonInMenu) { |
| 630 RunTest(FILE_PATH_LITERAL("input-image-button-in-menu.html")); | 635 RunTest(FILE_PATH_LITERAL("input-image-button-in-menu.html")); |
| 631 } | 636 } |
| 632 | 637 |
| 633 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputRadio) { | 638 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputRadio) { |
| (...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 793 | 798 |
| 794 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityUl) { | 799 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityUl) { |
| 795 RunTest(FILE_PATH_LITERAL("ul.html")); | 800 RunTest(FILE_PATH_LITERAL("ul.html")); |
| 796 } | 801 } |
| 797 | 802 |
| 798 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { | 803 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { |
| 799 RunTest(FILE_PATH_LITERAL("wbr.html")); | 804 RunTest(FILE_PATH_LITERAL("wbr.html")); |
| 800 } | 805 } |
| 801 | 806 |
| 802 } // namespace content | 807 } // namespace content |
| OLD | NEW |