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

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

Issue 2890723003: Slider events with valuetext (Closed)
Patch Set: Fix test Created 3 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 177 matching lines...) Expand 10 before | Expand all | Expand 10 after
188 DISABLED_ON_WIN_AND_MAC(AccessibilityEventsAriaComboBoxFocus)) { 188 DISABLED_ON_WIN_AND_MAC(AccessibilityEventsAriaComboBoxFocus)) {
189 RunEventTest(FILE_PATH_LITERAL("aria-combo-box-focus.html")); 189 RunEventTest(FILE_PATH_LITERAL("aria-combo-box-focus.html"));
190 } 190 }
191 191
192 IN_PROC_BROWSER_TEST_F(DumpAccessibilityEventsTest, 192 IN_PROC_BROWSER_TEST_F(DumpAccessibilityEventsTest,
193 AccessibilityEventsAriaComboBoxNext) { 193 AccessibilityEventsAriaComboBoxNext) {
194 RunEventTest(FILE_PATH_LITERAL("aria-combo-box-next.html")); 194 RunEventTest(FILE_PATH_LITERAL("aria-combo-box-next.html"));
195 } 195 }
196 196
197 IN_PROC_BROWSER_TEST_F(DumpAccessibilityEventsTest, 197 IN_PROC_BROWSER_TEST_F(DumpAccessibilityEventsTest,
198 AccessibilityEventsAriaSliderValueChange) {
199 RunEventTest(FILE_PATH_LITERAL("aria-slider-value-change.html"));
200 }
201
202 IN_PROC_BROWSER_TEST_F(DumpAccessibilityEventsTest,
203 AccessibilityEventsAriaSliderValueTextChange) {
204 RunEventTest(FILE_PATH_LITERAL("aria-slider-valuetext-change.html"));
205 }
206
207 IN_PROC_BROWSER_TEST_F(DumpAccessibilityEventsTest,
198 AccessibilityEventsAddAlert) { 208 AccessibilityEventsAddAlert) {
199 RunEventTest(FILE_PATH_LITERAL("add-alert.html")); 209 RunEventTest(FILE_PATH_LITERAL("add-alert.html"));
200 } 210 }
201 211
202 IN_PROC_BROWSER_TEST_F(DumpAccessibilityEventsTest, 212 IN_PROC_BROWSER_TEST_F(DumpAccessibilityEventsTest,
203 AccessibilityEventsAddChildOfBody) { 213 AccessibilityEventsAddChildOfBody) {
204 RunEventTest(FILE_PATH_LITERAL("add-child-of-body.html")); 214 RunEventTest(FILE_PATH_LITERAL("add-child-of-body.html"));
205 } 215 }
206 216
207 IN_PROC_BROWSER_TEST_F(DumpAccessibilityEventsTest, 217 IN_PROC_BROWSER_TEST_F(DumpAccessibilityEventsTest,
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
321 } 331 }
322 332
323 IN_PROC_BROWSER_TEST_F(DumpAccessibilityEventsTest, 333 IN_PROC_BROWSER_TEST_F(DumpAccessibilityEventsTest,
324 AccessibilityEventsTextChanged) { 334 AccessibilityEventsTextChanged) {
325 RunEventTest(FILE_PATH_LITERAL("text-changed.html")); 335 RunEventTest(FILE_PATH_LITERAL("text-changed.html"));
326 } 336 }
327 337
328 #endif // defined(OS_WIN) || defined(OS_MACOSX) 338 #endif // defined(OS_WIN) || defined(OS_MACOSX)
329 339
330 } // namespace content 340 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/accessibility/browser_accessibility_com_win.cc ('k') | content/renderer/accessibility/blink_ax_tree_source.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698