| 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 468 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 479 | 479 |
| 480 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaNavigation) { | 480 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaNavigation) { |
| 481 RunTest(FILE_PATH_LITERAL("aria-navigation.html")); | 481 RunTest(FILE_PATH_LITERAL("aria-navigation.html")); |
| 482 } | 482 } |
| 483 | 483 |
| 484 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 484 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
| 485 AccessibilityAriaOrientation) { | 485 AccessibilityAriaOrientation) { |
| 486 RunTest(FILE_PATH_LITERAL("aria-orientation.html")); | 486 RunTest(FILE_PATH_LITERAL("aria-orientation.html")); |
| 487 } | 487 } |
| 488 | 488 |
| 489 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaMath) { |
| 490 RunTest(FILE_PATH_LITERAL("aria-math.html")); |
| 491 } |
| 492 |
| 489 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaNone) { | 493 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaNone) { |
| 490 RunTest(FILE_PATH_LITERAL("aria-none.html")); | 494 RunTest(FILE_PATH_LITERAL("aria-none.html")); |
| 491 } | 495 } |
| 492 | 496 |
| 493 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 497 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
| 494 AccessibilityAriaPresentation) { | 498 AccessibilityAriaPresentation) { |
| 495 RunTest(FILE_PATH_LITERAL("aria-presentation.html")); | 499 RunTest(FILE_PATH_LITERAL("aria-presentation.html")); |
| 496 } | 500 } |
| 497 | 501 |
| 498 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaPressed) { | 502 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaPressed) { |
| (...skipping 364 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 863 } | 867 } |
| 864 | 868 |
| 865 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityMain) { | 869 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityMain) { |
| 866 RunTest(FILE_PATH_LITERAL("main.html")); | 870 RunTest(FILE_PATH_LITERAL("main.html")); |
| 867 } | 871 } |
| 868 | 872 |
| 869 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityMark) { | 873 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityMark) { |
| 870 RunTest(FILE_PATH_LITERAL("mark.html")); | 874 RunTest(FILE_PATH_LITERAL("mark.html")); |
| 871 } | 875 } |
| 872 | 876 |
| 877 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityMath) { |
| 878 RunTest(FILE_PATH_LITERAL("math.html")); |
| 879 } |
| 880 |
| 873 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 881 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
| 874 AccessibilityMenutypecontext) { | 882 AccessibilityMenutypecontext) { |
| 875 RunTest(FILE_PATH_LITERAL("menu-type-context.html")); | 883 RunTest(FILE_PATH_LITERAL("menu-type-context.html")); |
| 876 } | 884 } |
| 877 | 885 |
| 878 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityMeta) { | 886 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityMeta) { |
| 879 RunTest(FILE_PATH_LITERAL("meta.html")); | 887 RunTest(FILE_PATH_LITERAL("meta.html")); |
| 880 } | 888 } |
| 881 | 889 |
| 882 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityMeter) { | 890 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityMeter) { |
| (...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1025 | 1033 |
| 1026 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityUl) { | 1034 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityUl) { |
| 1027 RunTest(FILE_PATH_LITERAL("ul.html")); | 1035 RunTest(FILE_PATH_LITERAL("ul.html")); |
| 1028 } | 1036 } |
| 1029 | 1037 |
| 1030 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { | 1038 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { |
| 1031 RunTest(FILE_PATH_LITERAL("wbr.html")); | 1039 RunTest(FILE_PATH_LITERAL("wbr.html")); |
| 1032 } | 1040 } |
| 1033 | 1041 |
| 1034 } // namespace content | 1042 } // namespace content |
| OLD | NEW |