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

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

Issue 1009853002: Modify AX AriaGrabbed test and enable it. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add width and height attributes Created 5 years, 9 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 246 matching lines...) Expand 10 before | Expand all | Expand 10 after
257 257
258 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, 258 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest,
259 MAYBE(AccessibilityAriaFlowto)) { 259 MAYBE(AccessibilityAriaFlowto)) {
260 RunAriaTest(FILE_PATH_LITERAL("aria-flowto.html")); 260 RunAriaTest(FILE_PATH_LITERAL("aria-flowto.html"));
261 } 261 }
262 262
263 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaForm) { 263 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaForm) {
264 RunAriaTest(FILE_PATH_LITERAL("aria-form.html")); 264 RunAriaTest(FILE_PATH_LITERAL("aria-form.html"));
265 } 265 }
266 266
267 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, 267 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaGrabbed) {
268 DISABLED_AccessibilityAriaGrabbed) {
269 RunAriaTest(FILE_PATH_LITERAL("aria-grabbed.html")); 268 RunAriaTest(FILE_PATH_LITERAL("aria-grabbed.html"));
270 } 269 }
271 270
272 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaGrid) { 271 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaGrid) {
273 RunAriaTest(FILE_PATH_LITERAL("aria-grid.html")); 272 RunAriaTest(FILE_PATH_LITERAL("aria-grid.html"));
274 } 273 }
275 274
276 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaGridCell) { 275 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaGridCell) {
277 RunAriaTest(FILE_PATH_LITERAL("aria-gridcell.html")); 276 RunAriaTest(FILE_PATH_LITERAL("aria-gridcell.html"));
278 } 277 }
(...skipping 869 matching lines...) Expand 10 before | Expand all | Expand 10 after
1148 // crbug.com/281952 1147 // crbug.com/281952
1149 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityVideo) { 1148 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityVideo) {
1150 RunHtmlTest(FILE_PATH_LITERAL("video.html")); 1149 RunHtmlTest(FILE_PATH_LITERAL("video.html"));
1151 } 1150 }
1152 1151
1153 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { 1152 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) {
1154 RunHtmlTest(FILE_PATH_LITERAL("wbr.html")); 1153 RunHtmlTest(FILE_PATH_LITERAL("wbr.html"));
1155 } 1154 }
1156 1155
1157 } // namespace content 1156 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698