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

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

Issue 738733005: Input type "number" is not exposed in Acc layer Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebasing 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 | content/test/data/accessibility/html/input-number.html » ('j') | 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 703 matching lines...) Expand 10 before | Expand all | Expand 10 after
714 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, 714 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest,
715 DISABLED_AccessibilityInputMonth) { 715 DISABLED_AccessibilityInputMonth) {
716 RunHtmlTest(FILE_PATH_LITERAL("input-month.html")); 716 RunHtmlTest(FILE_PATH_LITERAL("input-month.html"));
717 } 717 }
718 #else 718 #else
719 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputMonth) { 719 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputMonth) {
720 RunHtmlTest(FILE_PATH_LITERAL("input-month.html")); 720 RunHtmlTest(FILE_PATH_LITERAL("input-month.html"));
721 } 721 }
722 #endif 722 #endif
723 723
724 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputNumber) {
725 RunHtmlTest(FILE_PATH_LITERAL("input-number.html"));
726 }
727
724 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputRadio) { 728 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputRadio) {
725 RunHtmlTest(FILE_PATH_LITERAL("input-radio.html")); 729 RunHtmlTest(FILE_PATH_LITERAL("input-radio.html"));
726 } 730 }
727 731
728 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, 732 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest,
729 AccessibilityInputRadioInMenu) { 733 AccessibilityInputRadioInMenu) {
730 RunHtmlTest(FILE_PATH_LITERAL("input-radio-in-menu.html")); 734 RunHtmlTest(FILE_PATH_LITERAL("input-radio-in-menu.html"));
731 } 735 }
732 736
733 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputRange) { 737 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputRange) {
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
768 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputTextValue) { 772 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputTextValue) {
769 RunHtmlTest(FILE_PATH_LITERAL("input-text-value.html")); 773 RunHtmlTest(FILE_PATH_LITERAL("input-text-value.html"));
770 } 774 }
771 775
772 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputTime) { 776 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputTime) {
773 RunHtmlTest(FILE_PATH_LITERAL("input-time.html")); 777 RunHtmlTest(FILE_PATH_LITERAL("input-time.html"));
774 } 778 }
775 779
776 // crbug.com/98976 will cause new elements to be added to the Blink a11y tree 780 // crbug.com/98976 will cause new elements to be added to the Blink a11y tree
777 // Re-baseline after the Blink change goes in 781 // Re-baseline after the Blink change goes in
778 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, 782 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputTypes) {
779 DISABLED_AccessibilityInputTypes) {
780 RunHtmlTest(FILE_PATH_LITERAL("input-types.html")); 783 RunHtmlTest(FILE_PATH_LITERAL("input-types.html"));
781 } 784 }
782 785
783 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputUrl) { 786 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputUrl) {
784 RunHtmlTest(FILE_PATH_LITERAL("input-url.html")); 787 RunHtmlTest(FILE_PATH_LITERAL("input-url.html"));
785 } 788 }
786 789
787 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputWeek) { 790 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputWeek) {
788 RunHtmlTest(FILE_PATH_LITERAL("input-week.html")); 791 RunHtmlTest(FILE_PATH_LITERAL("input-week.html"));
789 } 792 }
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
881 884
882 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityObject) { 885 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityObject) {
883 RunHtmlTest(FILE_PATH_LITERAL("object.html")); 886 RunHtmlTest(FILE_PATH_LITERAL("object.html"));
884 } 887 }
885 888
886 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, 889 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest,
887 AccessibilityOptionindatalist) { 890 AccessibilityOptionindatalist) {
888 RunHtmlTest(FILE_PATH_LITERAL("option-in-datalist.html")); 891 RunHtmlTest(FILE_PATH_LITERAL("option-in-datalist.html"));
889 } 892 }
890 893
891 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, 894 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityOutput) {
892 DISABLED_AccessibilityOutput) {
893 RunHtmlTest(FILE_PATH_LITERAL("output.html")); 895 RunHtmlTest(FILE_PATH_LITERAL("output.html"));
894 } 896 }
895 897
896 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityP) { 898 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityP) {
897 RunHtmlTest(FILE_PATH_LITERAL("p.html")); 899 RunHtmlTest(FILE_PATH_LITERAL("p.html"));
898 } 900 }
899 901
900 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityParam) { 902 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityParam) {
901 RunHtmlTest(FILE_PATH_LITERAL("param.html")); 903 RunHtmlTest(FILE_PATH_LITERAL("param.html"));
902 } 904 }
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
1002 1004
1003 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityVar) { 1005 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityVar) {
1004 RunHtmlTest(FILE_PATH_LITERAL("var.html")); 1006 RunHtmlTest(FILE_PATH_LITERAL("var.html"));
1005 } 1007 }
1006 1008
1007 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { 1009 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) {
1008 RunHtmlTest(FILE_PATH_LITERAL("wbr.html")); 1010 RunHtmlTest(FILE_PATH_LITERAL("wbr.html"));
1009 } 1011 }
1010 1012
1011 } // namespace content 1013 } // namespace content
OLDNEW
« no previous file with comments | « no previous file | content/test/data/accessibility/html/input-number.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698