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

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

Issue 859133003: Fire AX text inserted event when embedded obj char changes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase 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) 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 177 matching lines...) Expand 10 before | Expand all | Expand 10 after
188 AccessibilityEventsCSSVisibility) { 188 AccessibilityEventsCSSVisibility) {
189 RunEventTest(FILE_PATH_LITERAL("css-visibility.html")); 189 RunEventTest(FILE_PATH_LITERAL("css-visibility.html"));
190 } 190 }
191 191
192 IN_PROC_BROWSER_TEST_F(DumpAccessibilityEventsTest, 192 IN_PROC_BROWSER_TEST_F(DumpAccessibilityEventsTest,
193 AccessibilityEventsDescriptionChange) { 193 AccessibilityEventsDescriptionChange) {
194 RunEventTest(FILE_PATH_LITERAL("description-change.html")); 194 RunEventTest(FILE_PATH_LITERAL("description-change.html"));
195 } 195 }
196 196
197 IN_PROC_BROWSER_TEST_F(DumpAccessibilityEventsTest, 197 IN_PROC_BROWSER_TEST_F(DumpAccessibilityEventsTest,
198 AccessibilityEventsInnerHtmlChange) {
199 RunEventTest(FILE_PATH_LITERAL("inner-html-change.html"));
200 }
201
202 IN_PROC_BROWSER_TEST_F(DumpAccessibilityEventsTest,
198 AccessibilityEventsInputTypeTextValueChanged) { 203 AccessibilityEventsInputTypeTextValueChanged) {
199 RunEventTest(FILE_PATH_LITERAL("input-type-text-value-changed.html")); 204 RunEventTest(FILE_PATH_LITERAL("input-type-text-value-changed.html"));
200 } 205 }
201 206
202 IN_PROC_BROWSER_TEST_F(DumpAccessibilityEventsTest, 207 IN_PROC_BROWSER_TEST_F(DumpAccessibilityEventsTest,
203 AccessibilityEventsNameChange) { 208 AccessibilityEventsNameChange) {
204 RunEventTest(FILE_PATH_LITERAL("name-change.html")); 209 RunEventTest(FILE_PATH_LITERAL("name-change.html"));
205 } 210 }
206 211
207 IN_PROC_BROWSER_TEST_F(DumpAccessibilityEventsTest, 212 IN_PROC_BROWSER_TEST_F(DumpAccessibilityEventsTest,
(...skipping 18 matching lines...) Expand all
226 } 231 }
227 232
228 IN_PROC_BROWSER_TEST_F(DumpAccessibilityEventsTest, 233 IN_PROC_BROWSER_TEST_F(DumpAccessibilityEventsTest,
229 AccessibilityEventsTextChanged) { 234 AccessibilityEventsTextChanged) {
230 RunEventTest(FILE_PATH_LITERAL("text-changed.html")); 235 RunEventTest(FILE_PATH_LITERAL("text-changed.html"));
231 } 236 }
232 237
233 #endif // defined(OS_WIN) 238 #endif // defined(OS_WIN)
234 239
235 } // namespace content 240 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698