| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |