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 617 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
628 } | 628 } |
629 | 629 |
630 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityLegend) { | 630 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityLegend) { |
631 RunTest(FILE_PATH_LITERAL("legend.html")); | 631 RunTest(FILE_PATH_LITERAL("legend.html")); |
632 } | 632 } |
633 | 633 |
634 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityListMarkers) { | 634 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityListMarkers) { |
635 RunTest(FILE_PATH_LITERAL("list-markers.html")); | 635 RunTest(FILE_PATH_LITERAL("list-markers.html")); |
636 } | 636 } |
637 | 637 |
| 638 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityMain) { |
| 639 RunTest(FILE_PATH_LITERAL("main.html")); |
| 640 } |
| 641 |
638 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityMark) { | 642 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityMark) { |
639 RunTest(FILE_PATH_LITERAL("mark.html")); | 643 RunTest(FILE_PATH_LITERAL("mark.html")); |
640 } | 644 } |
641 | 645 |
642 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 646 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
643 AccessibilityMenutypecontext) { | 647 AccessibilityMenutypecontext) { |
644 RunTest(FILE_PATH_LITERAL("menu-type-context.html")); | 648 RunTest(FILE_PATH_LITERAL("menu-type-context.html")); |
645 } | 649 } |
646 | 650 |
647 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityMeta) { | 651 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityMeta) { |
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
742 | 746 |
743 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityUl) { | 747 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityUl) { |
744 RunTest(FILE_PATH_LITERAL("ul.html")); | 748 RunTest(FILE_PATH_LITERAL("ul.html")); |
745 } | 749 } |
746 | 750 |
747 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { | 751 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { |
748 RunTest(FILE_PATH_LITERAL("wbr.html")); | 752 RunTest(FILE_PATH_LITERAL("wbr.html")); |
749 } | 753 } |
750 | 754 |
751 } // namespace content | 755 } // namespace content |
OLD | NEW |