| 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 616 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 627 | 627 |
| 628 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 628 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
| 629 AccessibilityInputImageButtonInMenu) { | 629 AccessibilityInputImageButtonInMenu) { |
| 630 RunTest(FILE_PATH_LITERAL("input-image-button-in-menu.html")); | 630 RunTest(FILE_PATH_LITERAL("input-image-button-in-menu.html")); |
| 631 } | 631 } |
| 632 | 632 |
| 633 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputRadio) { | 633 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputRadio) { |
| 634 RunTest(FILE_PATH_LITERAL("input-radio.html")); | 634 RunTest(FILE_PATH_LITERAL("input-radio.html")); |
| 635 } | 635 } |
| 636 | 636 |
| 637 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
| 638 AccessibilityInputRadioInMenu) { |
| 639 RunTest(FILE_PATH_LITERAL("input-radio-in-menu.html")); |
| 640 } |
| 641 |
| 637 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputRange) { | 642 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputRange) { |
| 638 RunTest(FILE_PATH_LITERAL("input-range.html")); | 643 RunTest(FILE_PATH_LITERAL("input-range.html")); |
| 639 } | 644 } |
| 640 | 645 |
| 641 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputSearch) { | 646 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputSearch) { |
| 642 RunTest(FILE_PATH_LITERAL("input-search.html")); | 647 RunTest(FILE_PATH_LITERAL("input-search.html")); |
| 643 } | 648 } |
| 644 | 649 |
| 645 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 650 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
| 646 AccessibilityInputTextNameCalc) { | 651 AccessibilityInputTextNameCalc) { |
| (...skipping 146 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 |