| 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 751 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 762 } | 762 } |
| 763 | 763 |
| 764 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilitySpan) { | 764 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilitySpan) { |
| 765 RunTest(FILE_PATH_LITERAL("span.html")); | 765 RunTest(FILE_PATH_LITERAL("span.html")); |
| 766 } | 766 } |
| 767 | 767 |
| 768 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilitySub) { | 768 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilitySub) { |
| 769 RunTest(FILE_PATH_LITERAL("sub.html")); | 769 RunTest(FILE_PATH_LITERAL("sub.html")); |
| 770 } | 770 } |
| 771 | 771 |
| 772 // TODO(dmazzoni): Rebaseline this test after Blink rolls past r155083. | 772 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilitySvg) { |
| 773 // See http://crbug.com/265619 | |
| 774 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilitySvg) { | |
| 775 RunTest(FILE_PATH_LITERAL("svg.html")); | 773 RunTest(FILE_PATH_LITERAL("svg.html")); |
| 776 } | 774 } |
| 777 | 775 |
| 778 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityTab) { | 776 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityTab) { |
| 779 RunTest(FILE_PATH_LITERAL("tab.html")); | 777 RunTest(FILE_PATH_LITERAL("tab.html")); |
| 780 } | 778 } |
| 781 | 779 |
| 782 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityTableSimple) { | 780 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityTableSimple) { |
| 783 RunTest(FILE_PATH_LITERAL("table-simple.html")); | 781 RunTest(FILE_PATH_LITERAL("table-simple.html")); |
| 784 } | 782 } |
| 785 | 783 |
| 786 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityTableSpans) { | 784 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityTableSpans) { |
| 787 RunTest(FILE_PATH_LITERAL("table-spans.html")); | 785 RunTest(FILE_PATH_LITERAL("table-spans.html")); |
| 788 } | 786 } |
| 789 | 787 |
| 790 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityTransition) { | 788 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityTransition) { |
| 791 RunTest(FILE_PATH_LITERAL("transition.html")); | 789 RunTest(FILE_PATH_LITERAL("transition.html")); |
| 792 } | 790 } |
| 793 | 791 |
| 794 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityUl) { | 792 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityUl) { |
| 795 RunTest(FILE_PATH_LITERAL("ul.html")); | 793 RunTest(FILE_PATH_LITERAL("ul.html")); |
| 796 } | 794 } |
| 797 | 795 |
| 798 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { | 796 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { |
| 799 RunTest(FILE_PATH_LITERAL("wbr.html")); | 797 RunTest(FILE_PATH_LITERAL("wbr.html")); |
| 800 } | 798 } |
| 801 | 799 |
| 802 } // namespace content | 800 } // namespace content |
| OLD | NEW |