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 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
119 } | 119 } |
120 | 120 |
121 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAName) { | 121 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAName) { |
122 RunHtmlTest(FILE_PATH_LITERAL("a-name.html")); | 122 RunHtmlTest(FILE_PATH_LITERAL("a-name.html")); |
123 } | 123 } |
124 | 124 |
125 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityANameCalc) { | 125 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityANameCalc) { |
126 RunHtmlTest(FILE_PATH_LITERAL("a-name-calc.html")); | 126 RunHtmlTest(FILE_PATH_LITERAL("a-name-calc.html")); |
127 } | 127 } |
128 | 128 |
129 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityANoText) { | 129 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
| 130 MAYBE(AccessibilityANoText)) { |
130 RunHtmlTest(FILE_PATH_LITERAL("a-no-text.html")); | 131 RunHtmlTest(FILE_PATH_LITERAL("a-no-text.html")); |
131 } | 132 } |
132 | 133 |
133 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAOnclick) { | 134 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAOnclick) { |
134 RunHtmlTest(FILE_PATH_LITERAL("a-onclick.html")); | 135 RunHtmlTest(FILE_PATH_LITERAL("a-onclick.html")); |
135 } | 136 } |
136 | 137 |
137 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 138 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
138 AccessibilityAriaActivedescendant) { | 139 AccessibilityAriaActivedescendant) { |
139 RunAriaTest(FILE_PATH_LITERAL("aria-activedescendant.html")); | 140 RunAriaTest(FILE_PATH_LITERAL("aria-activedescendant.html")); |
(...skipping 859 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
999 | 1000 |
1000 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityVar) { | 1001 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityVar) { |
1001 RunHtmlTest(FILE_PATH_LITERAL("var.html")); | 1002 RunHtmlTest(FILE_PATH_LITERAL("var.html")); |
1002 } | 1003 } |
1003 | 1004 |
1004 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { | 1005 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { |
1005 RunHtmlTest(FILE_PATH_LITERAL("wbr.html")); | 1006 RunHtmlTest(FILE_PATH_LITERAL("wbr.html")); |
1006 } | 1007 } |
1007 | 1008 |
1008 } // namespace content | 1009 } // namespace content |
OLD | NEW |