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 296 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
307 } | 307 } |
308 | 308 |
309 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAName) { | 309 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAName) { |
310 RunTest(FILE_PATH_LITERAL("a-name.html")); | 310 RunTest(FILE_PATH_LITERAL("a-name.html")); |
311 } | 311 } |
312 | 312 |
313 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityANameCalc) { | 313 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityANameCalc) { |
314 RunTest(FILE_PATH_LITERAL("a-name-calc.html")); | 314 RunTest(FILE_PATH_LITERAL("a-name-calc.html")); |
315 } | 315 } |
316 | 316 |
317 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityANoText) { | 317 // crrev.com/481753002 will change the alt content used for the name value. |
| 318 // Re-baseline after the Blink change goes in |
| 319 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
| 320 DISABLED_AccessibilityANoText) { |
318 RunTest(FILE_PATH_LITERAL("a-no-text.html")); | 321 RunTest(FILE_PATH_LITERAL("a-no-text.html")); |
319 } | 322 } |
320 | 323 |
321 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAOnclick) { | 324 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAOnclick) { |
322 RunTest(FILE_PATH_LITERAL("a-onclick.html")); | 325 RunTest(FILE_PATH_LITERAL("a-onclick.html")); |
323 } | 326 } |
324 | 327 |
325 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 328 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
326 AccessibilityAriaActivedescendant) { | 329 AccessibilityAriaActivedescendant) { |
327 RunTest(FILE_PATH_LITERAL("aria-activedescendant.html")); | 330 RunTest(FILE_PATH_LITERAL("aria-activedescendant.html")); |
(...skipping 785 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1113 | 1116 |
1114 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityVar) { | 1117 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityVar) { |
1115 RunTest(FILE_PATH_LITERAL("var.html")); | 1118 RunTest(FILE_PATH_LITERAL("var.html")); |
1116 } | 1119 } |
1117 | 1120 |
1118 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { | 1121 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { |
1119 RunTest(FILE_PATH_LITERAL("wbr.html")); | 1122 RunTest(FILE_PATH_LITERAL("wbr.html")); |
1120 } | 1123 } |
1121 | 1124 |
1122 } // namespace content | 1125 } // namespace content |
OLD | NEW |