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

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

Issue 709243002: Disable temporarily aria-list for update code from blink. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month 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 419 matching lines...) Expand 10 before | Expand all | Expand 10 after
430 430
431 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, 431 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest,
432 AccessibilityAriaLabelledByHeading) { 432 AccessibilityAriaLabelledByHeading) {
433 RunTest(FILE_PATH_LITERAL("aria-labelledby-heading.html")); 433 RunTest(FILE_PATH_LITERAL("aria-labelledby-heading.html"));
434 } 434 }
435 435
436 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaLevel) { 436 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaLevel) {
437 RunTest(FILE_PATH_LITERAL("aria-level.html")); 437 RunTest(FILE_PATH_LITERAL("aria-level.html"));
438 } 438 }
439 439
440 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaList) { 440 //Disabled because of https://codereview.chromium.org/696953002 temporarily.
441 //After blink code is merged, it will be enabled.
442 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest,
443 DISABLED_AccessibilityAriaList) {
441 RunTest(FILE_PATH_LITERAL("aria-list.html")); 444 RunTest(FILE_PATH_LITERAL("aria-list.html"));
442 } 445 }
443 446
444 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaListBox) { 447 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaListBox) {
445 RunTest(FILE_PATH_LITERAL("aria-listbox.html")); 448 RunTest(FILE_PATH_LITERAL("aria-listbox.html"));
446 } 449 }
447 450
448 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, 451 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest,
449 AccessibilityAriaListBoxActiveDescendant) { 452 AccessibilityAriaListBoxActiveDescendant) {
450 RunTest(FILE_PATH_LITERAL("aria-listbox-activedescendant.html")); 453 RunTest(FILE_PATH_LITERAL("aria-listbox-activedescendant.html"));
(...skipping 638 matching lines...) Expand 10 before | Expand all | Expand 10 after
1089 1092
1090 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityVar) { 1093 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityVar) {
1091 RunTest(FILE_PATH_LITERAL("var.html")); 1094 RunTest(FILE_PATH_LITERAL("var.html"));
1092 } 1095 }
1093 1096
1094 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { 1097 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) {
1095 RunTest(FILE_PATH_LITERAL("wbr.html")); 1098 RunTest(FILE_PATH_LITERAL("wbr.html"));
1096 } 1099 }
1097 1100
1098 } // namespace content 1101 } // 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