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