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

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

Issue 2492083002: Implement aria-placeholder (Closed)
Patch Set: Implement code cleanup suggestion Created 4 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
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 1056 matching lines...) Expand 10 before | Expand all | Expand 10 after
1067 1067
1068 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, 1068 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest,
1069 AccessibilityInputSuggestionsSourceElement) { 1069 AccessibilityInputSuggestionsSourceElement) {
1070 RunHtmlTest(FILE_PATH_LITERAL("input-suggestions-source-element.html")); 1070 RunHtmlTest(FILE_PATH_LITERAL("input-suggestions-source-element.html"));
1071 } 1071 }
1072 1072
1073 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputTel) { 1073 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputTel) {
1074 RunHtmlTest(FILE_PATH_LITERAL("input-tel.html")); 1074 RunHtmlTest(FILE_PATH_LITERAL("input-tel.html"));
1075 } 1075 }
1076 1076
1077 // Fails on Android GN bot, see crbug.com/569542.
1078 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, 1077 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest,
1079 MAYBE(AccessibilityInputText)) { 1078 AccessibilityInputText) {
1080 RunHtmlTest(FILE_PATH_LITERAL("input-text.html")); 1079 RunHtmlTest(FILE_PATH_LITERAL("input-text.html"));
1081 } 1080 }
1082 1081
1083 // Fails on Android GN bot, see crbug.com/569542.
1084 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, 1082 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest,
1085 MAYBE(AccessibilityInputTextReadOnly)) { 1083 AccessibilityInputTextARIAPlaceholder) {
1084 RunHtmlTest(FILE_PATH_LITERAL("input-text-aria-placeholder.html"));
dmazzoni 2016/11/16 04:26:23 Nit: the ARIA tests are typically in the "aria" di
aboxhall 2016/11/17 00:53:27 Done.
1085 }
1086
1087 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest,
1088 AccessibilityInputTextReadOnly) {
1086 RunHtmlTest(FILE_PATH_LITERAL("input-text-read-only.html")); 1089 RunHtmlTest(FILE_PATH_LITERAL("input-text-read-only.html"));
1087 } 1090 }
1088 1091
1089 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, 1092 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest,
1090 AccessibilityInputTextNameCalc) { 1093 AccessibilityInputTextNameCalc) {
1091 RunHtmlTest(FILE_PATH_LITERAL("input-text-name-calc.html")); 1094 RunHtmlTest(FILE_PATH_LITERAL("input-text-name-calc.html"));
1092 } 1095 }
1093 1096
1094 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputTextValue) { 1097 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputTextValue) {
1095 RunHtmlTest(FILE_PATH_LITERAL("input-text-value.html")); 1098 RunHtmlTest(FILE_PATH_LITERAL("input-text-value.html"));
(...skipping 298 matching lines...) Expand 10 before | Expand all | Expand 10 after
1394 // crbug.com/281952 1397 // crbug.com/281952
1395 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityVideo) { 1398 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityVideo) {
1396 RunHtmlTest(FILE_PATH_LITERAL("video.html")); 1399 RunHtmlTest(FILE_PATH_LITERAL("video.html"));
1397 } 1400 }
1398 1401
1399 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { 1402 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) {
1400 RunHtmlTest(FILE_PATH_LITERAL("wbr.html")); 1403 RunHtmlTest(FILE_PATH_LITERAL("wbr.html"));
1401 } 1404 }
1402 1405
1403 } // namespace content 1406 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698