| 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 597 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 608 RunTest(FILE_PATH_LITERAL("input-text-name-calc.html")); | 608 RunTest(FILE_PATH_LITERAL("input-text-name-calc.html")); |
| 609 } | 609 } |
| 610 | 610 |
| 611 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputTime) { | 611 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputTime) { |
| 612 RunTest(FILE_PATH_LITERAL("input-time.html")); | 612 RunTest(FILE_PATH_LITERAL("input-time.html")); |
| 613 } | 613 } |
| 614 | 614 |
| 615 // crbug.com/98976 will cause new elements to be added to the Blink a11y tree | 615 // crbug.com/98976 will cause new elements to be added to the Blink a11y tree |
| 616 // Re-baseline after the Blink change goes in | 616 // Re-baseline after the Blink change goes in |
| 617 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 617 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
| 618 DISABLED_AccessibilityInputTypes) { | 618 AccessibilityInputTypes) { |
| 619 RunTest(FILE_PATH_LITERAL("input-types.html")); | 619 RunTest(FILE_PATH_LITERAL("input-types.html")); |
| 620 } | 620 } |
| 621 | 621 |
| 622 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityIns) { | 622 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityIns) { |
| 623 RunTest(FILE_PATH_LITERAL("ins.html")); | 623 RunTest(FILE_PATH_LITERAL("ins.html")); |
| 624 } | 624 } |
| 625 | 625 |
| 626 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityLabel) { | 626 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityLabel) { |
| 627 RunTest(FILE_PATH_LITERAL("label.html")); | 627 RunTest(FILE_PATH_LITERAL("label.html")); |
| 628 } | 628 } |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 750 | 750 |
| 751 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityUl) { | 751 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityUl) { |
| 752 RunTest(FILE_PATH_LITERAL("ul.html")); | 752 RunTest(FILE_PATH_LITERAL("ul.html")); |
| 753 } | 753 } |
| 754 | 754 |
| 755 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { | 755 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { |
| 756 RunTest(FILE_PATH_LITERAL("wbr.html")); | 756 RunTest(FILE_PATH_LITERAL("wbr.html")); |
| 757 } | 757 } |
| 758 | 758 |
| 759 } // namespace content | 759 } // namespace content |
| OLD | NEW |