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

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

Issue 2536993002: Remove support for the keygen tag (Closed)
Patch Set: Rebased Created 4 years 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 1113 matching lines...) Expand 10 before | Expand all | Expand 10 after
1124 } 1124 }
1125 1125
1126 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputWeek) { 1126 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputWeek) {
1127 RunHtmlTest(FILE_PATH_LITERAL("input-week.html")); 1127 RunHtmlTest(FILE_PATH_LITERAL("input-week.html"));
1128 } 1128 }
1129 1129
1130 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityIns) { 1130 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityIns) {
1131 RunHtmlTest(FILE_PATH_LITERAL("ins.html")); 1131 RunHtmlTest(FILE_PATH_LITERAL("ins.html"));
1132 } 1132 }
1133 1133
1134 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityKeygen) {
1135 RunHtmlTest(FILE_PATH_LITERAL("keygen.html"));
1136 }
1137
1138 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityLabel) { 1134 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityLabel) {
1139 RunHtmlTest(FILE_PATH_LITERAL("label.html")); 1135 RunHtmlTest(FILE_PATH_LITERAL("label.html"));
1140 } 1136 }
1141 1137
1142 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityLandmark) { 1138 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityLandmark) {
1143 RunHtmlTest(FILE_PATH_LITERAL("landmark.html")); 1139 RunHtmlTest(FILE_PATH_LITERAL("landmark.html"));
1144 } 1140 }
1145 1141
1146 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityLegend) { 1142 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityLegend) {
1147 RunHtmlTest(FILE_PATH_LITERAL("legend.html")); 1143 RunHtmlTest(FILE_PATH_LITERAL("legend.html"));
(...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after
1397 // crbug.com/281952 1393 // crbug.com/281952
1398 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityVideo) { 1394 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityVideo) {
1399 RunHtmlTest(FILE_PATH_LITERAL("video.html")); 1395 RunHtmlTest(FILE_PATH_LITERAL("video.html"));
1400 } 1396 }
1401 1397
1402 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { 1398 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) {
1403 RunHtmlTest(FILE_PATH_LITERAL("wbr.html")); 1399 RunHtmlTest(FILE_PATH_LITERAL("wbr.html"));
1404 } 1400 }
1405 1401
1406 } // namespace content 1402 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698