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

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

Issue 736023002: Add conversion rule for aria-grabbed attributes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update test results 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
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 243 matching lines...) Expand 10 before | Expand all | Expand 10 after
254 254
255 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, 255 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest,
256 MAYBE(AccessibilityAriaFlowto)) { 256 MAYBE(AccessibilityAriaFlowto)) {
257 RunAriaTest(FILE_PATH_LITERAL("aria-flowto.html")); 257 RunAriaTest(FILE_PATH_LITERAL("aria-flowto.html"));
258 } 258 }
259 259
260 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaForm) { 260 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaForm) {
261 RunAriaTest(FILE_PATH_LITERAL("aria-form.html")); 261 RunAriaTest(FILE_PATH_LITERAL("aria-form.html"));
262 } 262 }
263 263
264 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaGrabbed) {
265 RunAriaTest(FILE_PATH_LITERAL("aria-grabbed.html"));
266 }
267
264 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaImg) { 268 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaImg) {
265 RunAriaTest(FILE_PATH_LITERAL("aria-img.html")); 269 RunAriaTest(FILE_PATH_LITERAL("aria-img.html"));
266 } 270 }
267 271
268 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaInvalid) { 272 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaInvalid) {
269 RunAriaTest(FILE_PATH_LITERAL("aria-invalid.html")); 273 RunAriaTest(FILE_PATH_LITERAL("aria-invalid.html"));
270 } 274 }
271 275
272 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaLabel) { 276 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaLabel) {
273 RunAriaTest(FILE_PATH_LITERAL("aria-label.html")); 277 RunAriaTest(FILE_PATH_LITERAL("aria-label.html"));
(...skipping 818 matching lines...) Expand 10 before | Expand all | Expand 10 after
1092 // crbug.com/281952 1096 // crbug.com/281952
1093 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityVideo) { 1097 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityVideo) {
1094 RunHtmlTest(FILE_PATH_LITERAL("video.html")); 1098 RunHtmlTest(FILE_PATH_LITERAL("video.html"));
1095 } 1099 }
1096 1100
1097 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { 1101 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) {
1098 RunHtmlTest(FILE_PATH_LITERAL("wbr.html")); 1102 RunHtmlTest(FILE_PATH_LITERAL("wbr.html"));
1099 } 1103 }
1100 1104
1101 } // namespace content 1105 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698