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

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

Issue 2917363002: Automatically fire AX events on Mac based on tree changes (Closed)
Patch Set: Fix accidental shadowing of BrowserAccessibilityManager::OnAtomicUpdateFinished, caught by browser … Created 3 years, 6 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) 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 <stddef.h> 5 #include <stddef.h>
6 6
7 #include <set> 7 #include <set>
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after
270 AccessibilityEventsListboxNext) { 270 AccessibilityEventsListboxNext) {
271 RunEventTest(FILE_PATH_LITERAL("listbox-next.html")); 271 RunEventTest(FILE_PATH_LITERAL("listbox-next.html"));
272 } 272 }
273 273
274 IN_PROC_BROWSER_TEST_F(DumpAccessibilityEventsTest, 274 IN_PROC_BROWSER_TEST_F(DumpAccessibilityEventsTest,
275 AccessibilityEventsLiveRegionAdd) { 275 AccessibilityEventsLiveRegionAdd) {
276 RunEventTest(FILE_PATH_LITERAL("live-region-add.html")); 276 RunEventTest(FILE_PATH_LITERAL("live-region-add.html"));
277 } 277 }
278 278
279 IN_PROC_BROWSER_TEST_F(DumpAccessibilityEventsTest, 279 IN_PROC_BROWSER_TEST_F(DumpAccessibilityEventsTest,
280 AccessibilityEventsLiveRegionAddLiveAttribute) {
281 RunEventTest(FILE_PATH_LITERAL("live-region-add-live-attribute.html"));
282 }
283
284 IN_PROC_BROWSER_TEST_F(DumpAccessibilityEventsTest,
280 AccessibilityEventsLiveRegionChange) { 285 AccessibilityEventsLiveRegionChange) {
281 RunEventTest(FILE_PATH_LITERAL("live-region-change.html")); 286 RunEventTest(FILE_PATH_LITERAL("live-region-change.html"));
282 } 287 }
283 288
284 IN_PROC_BROWSER_TEST_F(DumpAccessibilityEventsTest, 289 IN_PROC_BROWSER_TEST_F(DumpAccessibilityEventsTest,
285 AccessibilityEventsLiveRegionCreate) { 290 AccessibilityEventsLiveRegionCreate) {
286 RunEventTest(FILE_PATH_LITERAL("live-region-create.html")); 291 RunEventTest(FILE_PATH_LITERAL("live-region-create.html"));
287 } 292 }
288 293
289 IN_PROC_BROWSER_TEST_F(DumpAccessibilityEventsTest, 294 IN_PROC_BROWSER_TEST_F(DumpAccessibilityEventsTest,
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
344 AccessibilityEventsRemoveSubtree) { 349 AccessibilityEventsRemoveSubtree) {
345 RunEventTest(FILE_PATH_LITERAL("remove-subtree.html")); 350 RunEventTest(FILE_PATH_LITERAL("remove-subtree.html"));
346 } 351 }
347 352
348 IN_PROC_BROWSER_TEST_F(DumpAccessibilityEventsTest, 353 IN_PROC_BROWSER_TEST_F(DumpAccessibilityEventsTest,
349 AccessibilityEventsTextChanged) { 354 AccessibilityEventsTextChanged) {
350 RunEventTest(FILE_PATH_LITERAL("text-changed.html")); 355 RunEventTest(FILE_PATH_LITERAL("text-changed.html"));
351 } 356 }
352 357
353 } // namespace content 358 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698