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

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

Issue 1128963004: Test AX events fired when opening a select popup. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add test expectations Created 5 years, 7 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
« no previous file with comments | « no previous file | content/shell/browser/shell.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2014 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2014 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/path_service.h" 9 #include "base/path_service.h"
10 #include "base/strings/string16.h" 10 #include "base/strings/string16.h"
(...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after
218 AccessibilityEventsMenuListFocus) { 218 AccessibilityEventsMenuListFocus) {
219 RunEventTest(FILE_PATH_LITERAL("menulist-focus.html")); 219 RunEventTest(FILE_PATH_LITERAL("menulist-focus.html"));
220 } 220 }
221 221
222 IN_PROC_BROWSER_TEST_F(DumpAccessibilityEventsTest, 222 IN_PROC_BROWSER_TEST_F(DumpAccessibilityEventsTest,
223 AccessibilityEventsMenuListNext) { 223 AccessibilityEventsMenuListNext) {
224 RunEventTest(FILE_PATH_LITERAL("menulist-next.html")); 224 RunEventTest(FILE_PATH_LITERAL("menulist-next.html"));
225 } 225 }
226 226
227 IN_PROC_BROWSER_TEST_F(DumpAccessibilityEventsTest, 227 IN_PROC_BROWSER_TEST_F(DumpAccessibilityEventsTest,
228 AccessibilityEventsMenuListPopup) {
229 RunEventTest(FILE_PATH_LITERAL("menulist-popup.html"));
230 }
231
232 IN_PROC_BROWSER_TEST_F(DumpAccessibilityEventsTest,
228 AccessibilityEventsNameChange) { 233 AccessibilityEventsNameChange) {
229 RunEventTest(FILE_PATH_LITERAL("name-change.html")); 234 RunEventTest(FILE_PATH_LITERAL("name-change.html"));
230 } 235 }
231 236
232 IN_PROC_BROWSER_TEST_F(DumpAccessibilityEventsTest, 237 IN_PROC_BROWSER_TEST_F(DumpAccessibilityEventsTest,
233 AccessibilityEventsRemoveChild) { 238 AccessibilityEventsRemoveChild) {
234 RunEventTest(FILE_PATH_LITERAL("remove-child.html")); 239 RunEventTest(FILE_PATH_LITERAL("remove-child.html"));
235 } 240 }
236 241
237 IN_PROC_BROWSER_TEST_F(DumpAccessibilityEventsTest, 242 IN_PROC_BROWSER_TEST_F(DumpAccessibilityEventsTest,
(...skipping 13 matching lines...) Expand all
251 } 256 }
252 257
253 IN_PROC_BROWSER_TEST_F(DumpAccessibilityEventsTest, 258 IN_PROC_BROWSER_TEST_F(DumpAccessibilityEventsTest,
254 AccessibilityEventsTextChanged) { 259 AccessibilityEventsTextChanged) {
255 RunEventTest(FILE_PATH_LITERAL("text-changed.html")); 260 RunEventTest(FILE_PATH_LITERAL("text-changed.html"));
256 } 261 }
257 262
258 #endif // defined(OS_WIN) 263 #endif // defined(OS_WIN)
259 264
260 } // namespace content 265 } // namespace content
OLDNEW
« no previous file with comments | « no previous file | content/shell/browser/shell.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698