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

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

Issue 1047893003: Disbaling aria-multiline and aria-textbox test cases. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 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 362 matching lines...) Expand 10 before | Expand all | Expand 10 after
373 } 373 }
374 374
375 // crbug.com/442278 will stop creating new text elements representing title. 375 // crbug.com/442278 will stop creating new text elements representing title.
376 // Re-baseline after the Blink change goes in 376 // Re-baseline after the Blink change goes in
377 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, 377 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest,
378 DISABLED_AccessibilityAriaMenuItemRadio) { 378 DISABLED_AccessibilityAriaMenuItemRadio) {
379 RunAriaTest(FILE_PATH_LITERAL("aria-menuitemradio.html")); 379 RunAriaTest(FILE_PATH_LITERAL("aria-menuitemradio.html"));
380 } 380 }
381 381
382 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, 382 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest,
383 AccessibilityAriaMultiline) { 383 DISABLED_AccessibilityAriaMultiline) {
384 RunAriaTest(FILE_PATH_LITERAL("aria-multiline.html")); 384 RunAriaTest(FILE_PATH_LITERAL("aria-multiline.html"));
385 } 385 }
386 386
387 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, 387 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest,
388 AccessibilityAriaMultiselectable) { 388 AccessibilityAriaMultiselectable) {
389 RunAriaTest(FILE_PATH_LITERAL("aria-multiselectable.html")); 389 RunAriaTest(FILE_PATH_LITERAL("aria-multiselectable.html"));
390 } 390 }
391 391
392 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaNavigation) { 392 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaNavigation) {
393 RunAriaTest(FILE_PATH_LITERAL("aria-navigation.html")); 393 RunAriaTest(FILE_PATH_LITERAL("aria-navigation.html"));
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
517 } 517 }
518 518
519 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaTabList) { 519 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaTabList) {
520 RunAriaTest(FILE_PATH_LITERAL("aria-tablist.html")); 520 RunAriaTest(FILE_PATH_LITERAL("aria-tablist.html"));
521 } 521 }
522 522
523 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaTabPanel) { 523 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaTabPanel) {
524 RunAriaTest(FILE_PATH_LITERAL("aria-tabpanel.html")); 524 RunAriaTest(FILE_PATH_LITERAL("aria-tabpanel.html"));
525 } 525 }
526 526
527 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaTextbox) { 527 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest,
528 DISABLED_AccessibilityAriaTextbox) {
528 RunAriaTest(FILE_PATH_LITERAL("aria-textbox.html")); 529 RunAriaTest(FILE_PATH_LITERAL("aria-textbox.html"));
529 } 530 }
530 531
531 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaTimer) { 532 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaTimer) {
532 RunAriaTest(FILE_PATH_LITERAL("aria-timer.html")); 533 RunAriaTest(FILE_PATH_LITERAL("aria-timer.html"));
533 } 534 }
534 535
535 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, 536 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest,
536 AccessibilityAriaToggleButton) { 537 AccessibilityAriaToggleButton) {
537 RunAriaTest(FILE_PATH_LITERAL("aria-togglebutton.html")); 538 RunAriaTest(FILE_PATH_LITERAL("aria-togglebutton.html"));
(...skipping 619 matching lines...) Expand 10 before | Expand all | Expand 10 after
1157 // crbug.com/281952 1158 // crbug.com/281952
1158 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityVideo) { 1159 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityVideo) {
1159 RunHtmlTest(FILE_PATH_LITERAL("video.html")); 1160 RunHtmlTest(FILE_PATH_LITERAL("video.html"));
1160 } 1161 }
1161 1162
1162 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { 1163 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) {
1163 RunHtmlTest(FILE_PATH_LITERAL("wbr.html")); 1164 RunHtmlTest(FILE_PATH_LITERAL("wbr.html"));
1164 } 1165 }
1165 1166
1166 } // namespace content 1167 } // 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