| 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/path_service.h" | 10 #include "base/path_service.h" |
| (...skipping 820 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 831 | 831 |
| 832 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaValueText) { | 832 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaValueText) { |
| 833 RunAriaTest(FILE_PATH_LITERAL("aria-valuetext.html")); | 833 RunAriaTest(FILE_PATH_LITERAL("aria-valuetext.html")); |
| 834 } | 834 } |
| 835 | 835 |
| 836 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 836 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
| 837 AccessibilityInputTextARIAPlaceholder) { | 837 AccessibilityInputTextARIAPlaceholder) { |
| 838 RunAriaTest(FILE_PATH_LITERAL("input-text-aria-placeholder.html")); | 838 RunAriaTest(FILE_PATH_LITERAL("input-text-aria-placeholder.html")); |
| 839 } | 839 } |
| 840 | 840 |
| 841 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
| 842 AccessibilityTableColumnHidden) { |
| 843 RunAriaTest(FILE_PATH_LITERAL("table-column-hidden.html")); |
| 844 } |
| 845 |
| 841 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityArticle) { | 846 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityArticle) { |
| 842 RunHtmlTest(FILE_PATH_LITERAL("article.html")); | 847 RunHtmlTest(FILE_PATH_LITERAL("article.html")); |
| 843 } | 848 } |
| 844 | 849 |
| 845 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAside) { | 850 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAside) { |
| 846 RunHtmlTest(FILE_PATH_LITERAL("aside.html")); | 851 RunHtmlTest(FILE_PATH_LITERAL("aside.html")); |
| 847 } | 852 } |
| 848 | 853 |
| 849 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAudio) { | 854 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAudio) { |
| 850 RunHtmlTest(FILE_PATH_LITERAL("audio.html")); | 855 RunHtmlTest(FILE_PATH_LITERAL("audio.html")); |
| (...skipping 734 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1585 // crbug.com/281952 | 1590 // crbug.com/281952 |
| 1586 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityVideo) { | 1591 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityVideo) { |
| 1587 RunHtmlTest(FILE_PATH_LITERAL("video.html")); | 1592 RunHtmlTest(FILE_PATH_LITERAL("video.html")); |
| 1588 } | 1593 } |
| 1589 | 1594 |
| 1590 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { | 1595 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { |
| 1591 RunHtmlTest(FILE_PATH_LITERAL("wbr.html")); | 1596 RunHtmlTest(FILE_PATH_LITERAL("wbr.html")); |
| 1592 } | 1597 } |
| 1593 | 1598 |
| 1594 } // namespace content | 1599 } // namespace content |
| OLD | NEW |