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

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

Issue 1937873002: Adds AXExpandedChanged for general roles. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: addressed comment Created 4 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
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 180 matching lines...) Expand 10 before | Expand all | Expand 10 after
191 AccessibilityEventsCSSVisibility) { 191 AccessibilityEventsCSSVisibility) {
192 RunEventTest(FILE_PATH_LITERAL("css-visibility.html")); 192 RunEventTest(FILE_PATH_LITERAL("css-visibility.html"));
193 } 193 }
194 194
195 IN_PROC_BROWSER_TEST_F(DumpAccessibilityEventsTest, 195 IN_PROC_BROWSER_TEST_F(DumpAccessibilityEventsTest,
196 AccessibilityEventsDescriptionChange) { 196 AccessibilityEventsDescriptionChange) {
197 RunEventTest(FILE_PATH_LITERAL("description-change.html")); 197 RunEventTest(FILE_PATH_LITERAL("description-change.html"));
198 } 198 }
199 199
200 IN_PROC_BROWSER_TEST_F(DumpAccessibilityEventsTest, 200 IN_PROC_BROWSER_TEST_F(DumpAccessibilityEventsTest,
201 AccessibilityEventsExpandedChange) {
202 RunEventTest(FILE_PATH_LITERAL("expanded-change.html"));
203 }
204
205 IN_PROC_BROWSER_TEST_F(DumpAccessibilityEventsTest,
201 AccessibilityEventsInnerHtmlChange) { 206 AccessibilityEventsInnerHtmlChange) {
202 RunEventTest(FILE_PATH_LITERAL("inner-html-change.html")); 207 RunEventTest(FILE_PATH_LITERAL("inner-html-change.html"));
203 } 208 }
204 209
205 #if defined(OS_MACOSX) 210 #if defined(OS_MACOSX)
206 // Mac failures: http://crbug.com/598527. 211 // Mac failures: http://crbug.com/598527.
207 #define MAYBE_AccessibilityEventsInputTypeTextValueChanged \ 212 #define MAYBE_AccessibilityEventsInputTypeTextValueChanged \
208 DISABLED_AccessibilityEventsInputTypeTextValueChanged 213 DISABLED_AccessibilityEventsInputTypeTextValueChanged
209 #else 214 #else
210 #define MAYBE_AccessibilityEventsInputTypeTextValueChanged \ 215 #define MAYBE_AccessibilityEventsInputTypeTextValueChanged \
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
270 } 275 }
271 276
272 IN_PROC_BROWSER_TEST_F(DumpAccessibilityEventsTest, 277 IN_PROC_BROWSER_TEST_F(DumpAccessibilityEventsTest,
273 AccessibilityEventsTextChanged) { 278 AccessibilityEventsTextChanged) {
274 RunEventTest(FILE_PATH_LITERAL("text-changed.html")); 279 RunEventTest(FILE_PATH_LITERAL("text-changed.html"));
275 } 280 }
276 281
277 #endif // defined(OS_WIN) 282 #endif // defined(OS_WIN)
278 283
279 } // namespace content 284 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698