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

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

Issue 823343002: Disabling AX tests(Legend, Samp, inputsubmit, dfn) temporarily. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 12 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 522 matching lines...) Expand 10 before | Expand all | Expand 10 after
533 } 533 }
534 534
535 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityDel) { 535 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityDel) {
536 RunHtmlTest(FILE_PATH_LITERAL("del.html")); 536 RunHtmlTest(FILE_PATH_LITERAL("del.html"));
537 } 537 }
538 538
539 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityDetails) { 539 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityDetails) {
540 RunHtmlTest(FILE_PATH_LITERAL("details.html")); 540 RunHtmlTest(FILE_PATH_LITERAL("details.html"));
541 } 541 }
542 542
543 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityDfn) { 543 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityDfn) {
544 RunHtmlTest(FILE_PATH_LITERAL("dfn.html")); 544 RunHtmlTest(FILE_PATH_LITERAL("dfn.html"));
545 } 545 }
546 546
547 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityDialog) { 547 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityDialog) {
548 RunHtmlTest(FILE_PATH_LITERAL("dialog.html")); 548 RunHtmlTest(FILE_PATH_LITERAL("dialog.html"));
549 } 549 }
550 550
551 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityDiv) { 551 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityDiv) {
552 RunHtmlTest(FILE_PATH_LITERAL("div.html")); 552 RunHtmlTest(FILE_PATH_LITERAL("div.html"));
553 } 553 }
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after
710 } 710 }
711 711
712 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputReset) { 712 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputReset) {
713 RunHtmlTest(FILE_PATH_LITERAL("input-reset.html")); 713 RunHtmlTest(FILE_PATH_LITERAL("input-reset.html"));
714 } 714 }
715 715
716 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputSearch) { 716 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputSearch) {
717 RunHtmlTest(FILE_PATH_LITERAL("input-search.html")); 717 RunHtmlTest(FILE_PATH_LITERAL("input-search.html"));
718 } 718 }
719 719
720 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputSubmit) { 720 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest,
721 DISABLED_AccessibilityInputSubmit) {
721 RunHtmlTest(FILE_PATH_LITERAL("input-submit.html")); 722 RunHtmlTest(FILE_PATH_LITERAL("input-submit.html"));
722 } 723 }
723 724
724 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, 725 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest,
725 AccessibilityInputSuggestionsSourceElement) { 726 AccessibilityInputSuggestionsSourceElement) {
726 RunHtmlTest(FILE_PATH_LITERAL("input-suggestions-source-element.html")); 727 RunHtmlTest(FILE_PATH_LITERAL("input-suggestions-source-element.html"));
727 } 728 }
728 729
729 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputTel) { 730 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputTel) {
730 RunHtmlTest(FILE_PATH_LITERAL("input-tel.html")); 731 RunHtmlTest(FILE_PATH_LITERAL("input-tel.html"));
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
767 } 768 }
768 769
769 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityLabel) { 770 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityLabel) {
770 RunHtmlTest(FILE_PATH_LITERAL("label.html")); 771 RunHtmlTest(FILE_PATH_LITERAL("label.html"));
771 } 772 }
772 773
773 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityLandmark) { 774 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityLandmark) {
774 RunHtmlTest(FILE_PATH_LITERAL("landmark.html")); 775 RunHtmlTest(FILE_PATH_LITERAL("landmark.html"));
775 } 776 }
776 777
777 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityLegend) { 778 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest,
779 DISABLED_AccessibilityLegend) {
778 RunHtmlTest(FILE_PATH_LITERAL("legend.html")); 780 RunHtmlTest(FILE_PATH_LITERAL("legend.html"));
779 } 781 }
780 782
781 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityLink) { 783 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityLink) {
782 RunHtmlTest(FILE_PATH_LITERAL("link.html")); 784 RunHtmlTest(FILE_PATH_LITERAL("link.html"));
783 } 785 }
784 786
785 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityList) { 787 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityList) {
786 RunHtmlTest(FILE_PATH_LITERAL("list.html")); 788 RunHtmlTest(FILE_PATH_LITERAL("list.html"));
787 } 789 }
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
887 } 889 }
888 890
889 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityRuby) { 891 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityRuby) {
890 RunHtmlTest(FILE_PATH_LITERAL("ruby.html")); 892 RunHtmlTest(FILE_PATH_LITERAL("ruby.html"));
891 } 893 }
892 894
893 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityS) { 895 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityS) {
894 RunHtmlTest(FILE_PATH_LITERAL("s.html")); 896 RunHtmlTest(FILE_PATH_LITERAL("s.html"));
895 } 897 }
896 898
897 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilitySamp) { 899 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilitySamp) {
898 RunHtmlTest(FILE_PATH_LITERAL("samp.html")); 900 RunHtmlTest(FILE_PATH_LITERAL("samp.html"));
899 } 901 }
900 902
901 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityScript) { 903 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityScript) {
902 RunHtmlTest(FILE_PATH_LITERAL("script.html")); 904 RunHtmlTest(FILE_PATH_LITERAL("script.html"));
903 } 905 }
904 906
905 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilitySection) { 907 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilitySection) {
906 RunHtmlTest(FILE_PATH_LITERAL("section.html")); 908 RunHtmlTest(FILE_PATH_LITERAL("section.html"));
907 } 909 }
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
974 976
975 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityVar) { 977 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityVar) {
976 RunHtmlTest(FILE_PATH_LITERAL("var.html")); 978 RunHtmlTest(FILE_PATH_LITERAL("var.html"));
977 } 979 }
978 980
979 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { 981 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) {
980 RunHtmlTest(FILE_PATH_LITERAL("wbr.html")); 982 RunHtmlTest(FILE_PATH_LITERAL("wbr.html"));
981 } 983 }
982 984
983 } // namespace content 985 } // 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