Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(707)

Side by Side Diff: content/browser/accessibility/dump_accessibility_tree_browsertest.cc

Issue 751553006: Disable AccessibilityANoText until crrev.com/481753002 lands (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@testbranch-2
Patch Set: Updated Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698