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

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

Issue 873593003: Disable aria-columnheader.html, aria-row.html, aria-rowheader.html, aria-sort.html (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 months 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/path_service.h" 10 #include "base/path_service.h"
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after
178 } 178 }
179 179
180 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaCheckBox) { 180 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaCheckBox) {
181 RunAriaTest(FILE_PATH_LITERAL("aria-checkbox.html")); 181 RunAriaTest(FILE_PATH_LITERAL("aria-checkbox.html"));
182 } 182 }
183 183
184 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaChecked) { 184 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaChecked) {
185 RunAriaTest(FILE_PATH_LITERAL("aria-checked.html")); 185 RunAriaTest(FILE_PATH_LITERAL("aria-checked.html"));
186 } 186 }
187 187
188 // crbug.com/451047 will cause new elements to be added to the blink a11y tree
189 // Re-baseline after the Blink change goes in
188 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, 190 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest,
189 AccessibilityAriaColumnHeader) { 191 DISABLED_AccessibilityAriaColumnHeader) {
190 RunAriaTest(FILE_PATH_LITERAL("aria-columnheader.html")); 192 RunAriaTest(FILE_PATH_LITERAL("aria-columnheader.html"));
191 } 193 }
192 194
193 // crbug.com/98976 will cause new elements to be added to the Blink a11y tree 195 // crbug.com/98976 will cause new elements to be added to the Blink a11y tree
194 // Re-baseline after the Blink change goes in 196 // Re-baseline after the Blink change goes in
195 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, 197 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest,
196 DISABLED_AccessibilityAriaCombobox) { 198 DISABLED_AccessibilityAriaCombobox) {
197 RunAriaTest(FILE_PATH_LITERAL("aria-combobox.html")); 199 RunAriaTest(FILE_PATH_LITERAL("aria-combobox.html"));
198 } 200 }
199 201
(...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after
427 } 429 }
428 430
429 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaRelevant) { 431 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaRelevant) {
430 RunAriaTest(FILE_PATH_LITERAL("aria-relevant.html")); 432 RunAriaTest(FILE_PATH_LITERAL("aria-relevant.html"));
431 } 433 }
432 434
433 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaRequired) { 435 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaRequired) {
434 RunAriaTest(FILE_PATH_LITERAL("aria-required.html")); 436 RunAriaTest(FILE_PATH_LITERAL("aria-required.html"));
435 } 437 }
436 438
437 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaRow) { 439 // crbug.com/451047 will cause new elements to be added to the blink a11y tree
440 // Re-baseline after the Blink change goes in
441 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest,
442 DISABLED_AccessibilityAriaRow) {
438 RunAriaTest(FILE_PATH_LITERAL("aria-row.html")); 443 RunAriaTest(FILE_PATH_LITERAL("aria-row.html"));
439 } 444 }
440 445
441 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaRowGroup) { 446 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaRowGroup) {
442 RunAriaTest(FILE_PATH_LITERAL("aria-rowgroup.html")); 447 RunAriaTest(FILE_PATH_LITERAL("aria-rowgroup.html"));
443 } 448 }
444 449
445 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaRowHeader) { 450 // crbug.com/451047 will cause new elements to be added to the blink a11y tree
451 // Re-baseline after the Blink change goes in
452 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest,
453 DISABLED_AccessibilityAriaRowHeader) {
446 RunAriaTest(FILE_PATH_LITERAL("aria-rowheader.html")); 454 RunAriaTest(FILE_PATH_LITERAL("aria-rowheader.html"));
447 } 455 }
448 456
449 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaScrollbar) { 457 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaScrollbar) {
450 RunAriaTest(FILE_PATH_LITERAL("aria-scrollbar.html")); 458 RunAriaTest(FILE_PATH_LITERAL("aria-scrollbar.html"));
451 } 459 }
452 460
453 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaSearch) { 461 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaSearch) {
454 RunAriaTest(FILE_PATH_LITERAL("aria-search.html")); 462 RunAriaTest(FILE_PATH_LITERAL("aria-search.html"));
455 } 463 }
456 464
457 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaSelected) { 465 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaSelected) {
458 RunAriaTest(FILE_PATH_LITERAL("aria-selected.html")); 466 RunAriaTest(FILE_PATH_LITERAL("aria-selected.html"));
459 } 467 }
460 468
461 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaSeparator) { 469 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaSeparator) {
462 RunAriaTest(FILE_PATH_LITERAL("aria-separator.html")); 470 RunAriaTest(FILE_PATH_LITERAL("aria-separator.html"));
463 } 471 }
464 472
465 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaSort) { 473 // crbug.com/451047 will cause new elements to be added to the blink a11y tree
474 // Re-baseline after the Blink change goes in
475 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest,
476 DISABLED_AccessibilityAriaSort) {
466 RunAriaTest(FILE_PATH_LITERAL("aria-sort.html")); 477 RunAriaTest(FILE_PATH_LITERAL("aria-sort.html"));
467 } 478 }
468 479
469 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaSlider) { 480 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaSlider) {
470 RunAriaTest(FILE_PATH_LITERAL("aria-slider.html")); 481 RunAriaTest(FILE_PATH_LITERAL("aria-slider.html"));
471 } 482 }
472 483
473 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, 484 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest,
474 AccessibilityAriaSpinButton) { 485 AccessibilityAriaSpinButton) {
475 RunAriaTest(FILE_PATH_LITERAL("aria-spinbutton.html")); 486 RunAriaTest(FILE_PATH_LITERAL("aria-spinbutton.html"));
(...skipping 616 matching lines...) Expand 10 before | Expand all | Expand 10 after
1092 // crbug.com/281952 1103 // crbug.com/281952
1093 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityVideo) { 1104 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityVideo) {
1094 RunHtmlTest(FILE_PATH_LITERAL("video.html")); 1105 RunHtmlTest(FILE_PATH_LITERAL("video.html"));
1095 } 1106 }
1096 1107
1097 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { 1108 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) {
1098 RunHtmlTest(FILE_PATH_LITERAL("wbr.html")); 1109 RunHtmlTest(FILE_PATH_LITERAL("wbr.html"));
1099 } 1110 }
1100 1111
1101 } // namespace content 1112 } // 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