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

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

Issue 874893003: Handles aria-dropeffect after getting its value from blink. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update test results Created 5 years, 10 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 219 matching lines...) Expand 10 before | Expand all | Expand 10 after
230 } 230 }
231 231
232 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaDisabled) { 232 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaDisabled) {
233 RunAriaTest(FILE_PATH_LITERAL("aria-disabled.html")); 233 RunAriaTest(FILE_PATH_LITERAL("aria-disabled.html"));
234 } 234 }
235 235
236 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaDocument) { 236 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaDocument) {
237 RunAriaTest(FILE_PATH_LITERAL("aria-document.html")); 237 RunAriaTest(FILE_PATH_LITERAL("aria-document.html"));
238 } 238 }
239 239
240 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaDropEffect) {
241 RunAriaTest(FILE_PATH_LITERAL("aria-dropeffect.html"));
242 }
243
240 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaExpanded) { 244 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaExpanded) {
241 RunAriaTest(FILE_PATH_LITERAL("aria-expanded.html")); 245 RunAriaTest(FILE_PATH_LITERAL("aria-expanded.html"));
242 } 246 }
243 247
244 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaHasPopup) { 248 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaHasPopup) {
245 RunAriaTest(FILE_PATH_LITERAL("aria-haspopup.html")); 249 RunAriaTest(FILE_PATH_LITERAL("aria-haspopup.html"));
246 } 250 }
247 251
248 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaHeading) { 252 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaHeading) {
249 RunAriaTest(FILE_PATH_LITERAL("aria-heading.html")); 253 RunAriaTest(FILE_PATH_LITERAL("aria-heading.html"));
(...skipping 898 matching lines...) Expand 10 before | Expand all | Expand 10 after
1148 // crbug.com/281952 1152 // crbug.com/281952
1149 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityVideo) { 1153 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityVideo) {
1150 RunHtmlTest(FILE_PATH_LITERAL("video.html")); 1154 RunHtmlTest(FILE_PATH_LITERAL("video.html"));
1151 } 1155 }
1152 1156
1153 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { 1157 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) {
1154 RunHtmlTest(FILE_PATH_LITERAL("wbr.html")); 1158 RunHtmlTest(FILE_PATH_LITERAL("wbr.html"));
1155 } 1159 }
1156 1160
1157 } // namespace content 1161 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698