| 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 582 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 593 | 593 |
| 594 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputColor) { | 594 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputColor) { |
| 595 RunTest(FILE_PATH_LITERAL("input-color.html")); | 595 RunTest(FILE_PATH_LITERAL("input-color.html")); |
| 596 } | 596 } |
| 597 | 597 |
| 598 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 598 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
| 599 AccessibilityInputImageButtonInMenu) { | 599 AccessibilityInputImageButtonInMenu) { |
| 600 RunTest(FILE_PATH_LITERAL("input-image-button-in-menu.html")); | 600 RunTest(FILE_PATH_LITERAL("input-image-button-in-menu.html")); |
| 601 } | 601 } |
| 602 | 602 |
| 603 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputRadio) { |
| 604 RunTest(FILE_PATH_LITERAL("input-radio.html")); |
| 605 } |
| 606 |
| 603 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputRange) { | 607 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputRange) { |
| 604 RunTest(FILE_PATH_LITERAL("input-range.html")); | 608 RunTest(FILE_PATH_LITERAL("input-range.html")); |
| 605 } | 609 } |
| 606 | 610 |
| 607 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputSearch) { | 611 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputSearch) { |
| 608 RunTest(FILE_PATH_LITERAL("input-search.html")); | 612 RunTest(FILE_PATH_LITERAL("input-search.html")); |
| 609 } | 613 } |
| 610 | 614 |
| 611 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 615 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
| 612 AccessibilityInputTextNameCalc) { | 616 AccessibilityInputTextNameCalc) { |
| (...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 755 | 759 |
| 756 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityUl) { | 760 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityUl) { |
| 757 RunTest(FILE_PATH_LITERAL("ul.html")); | 761 RunTest(FILE_PATH_LITERAL("ul.html")); |
| 758 } | 762 } |
| 759 | 763 |
| 760 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { | 764 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { |
| 761 RunTest(FILE_PATH_LITERAL("wbr.html")); | 765 RunTest(FILE_PATH_LITERAL("wbr.html")); |
| 762 } | 766 } |
| 763 | 767 |
| 764 } // namespace content | 768 } // namespace content |
| OLD | NEW |