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 629 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
640 | 640 |
641 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputSearch) { | 641 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputSearch) { |
642 RunTest(FILE_PATH_LITERAL("input-search.html")); | 642 RunTest(FILE_PATH_LITERAL("input-search.html")); |
643 } | 643 } |
644 | 644 |
645 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 645 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
646 AccessibilityInputTextNameCalc) { | 646 AccessibilityInputTextNameCalc) { |
647 RunTest(FILE_PATH_LITERAL("input-text-name-calc.html")); | 647 RunTest(FILE_PATH_LITERAL("input-text-name-calc.html")); |
648 } | 648 } |
649 | 649 |
| 650 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputTextValue) { |
| 651 RunTest(FILE_PATH_LITERAL("input-text-value.html")); |
| 652 } |
| 653 |
650 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputTime) { | 654 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputTime) { |
651 RunTest(FILE_PATH_LITERAL("input-time.html")); | 655 RunTest(FILE_PATH_LITERAL("input-time.html")); |
652 } | 656 } |
653 | 657 |
654 // crbug.com/98976 will cause new elements to be added to the Blink a11y tree | 658 // crbug.com/98976 will cause new elements to be added to the Blink a11y tree |
655 // Re-baseline after the Blink change goes in | 659 // Re-baseline after the Blink change goes in |
656 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 660 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
657 AccessibilityInputTypes) { | 661 AccessibilityInputTypes) { |
658 RunTest(FILE_PATH_LITERAL("input-types.html")); | 662 RunTest(FILE_PATH_LITERAL("input-types.html")); |
659 } | 663 } |
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
793 | 797 |
794 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityUl) { | 798 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityUl) { |
795 RunTest(FILE_PATH_LITERAL("ul.html")); | 799 RunTest(FILE_PATH_LITERAL("ul.html")); |
796 } | 800 } |
797 | 801 |
798 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { | 802 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { |
799 RunTest(FILE_PATH_LITERAL("wbr.html")); | 803 RunTest(FILE_PATH_LITERAL("wbr.html")); |
800 } | 804 } |
801 | 805 |
802 } // namespace content | 806 } // namespace content |
OLD | NEW |