| 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 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 AccessibilityEventsInnerHtmlChange) { | 201 AccessibilityEventsInnerHtmlChange) { |
| 202 RunEventTest(FILE_PATH_LITERAL("inner-html-change.html")); | 202 RunEventTest(FILE_PATH_LITERAL("inner-html-change.html")); |
| 203 } | 203 } |
| 204 | 204 |
| 205 #if defined(OS_MACOSX) |
| 206 // Mac failures: http://crbug.com/598527. |
| 207 #define MAYBE_AccessibilityEventsInputTypeTextValueChanged \ |
| 208 DISABLED_AccessibilityEventsInputTypeTextValueChanged |
| 209 #else |
| 210 #define MAYBE_AccessibilityEventsInputTypeTextValueChanged \ |
| 211 AccessibilityEventsInputTypeTextValueChanged |
| 212 #endif |
| 205 IN_PROC_BROWSER_TEST_F(DumpAccessibilityEventsTest, | 213 IN_PROC_BROWSER_TEST_F(DumpAccessibilityEventsTest, |
| 206 AccessibilityEventsInputTypeTextValueChanged) { | 214 MAYBE_AccessibilityEventsInputTypeTextValueChanged) { |
| 207 RunEventTest(FILE_PATH_LITERAL("input-type-text-value-changed.html")); | 215 RunEventTest(FILE_PATH_LITERAL("input-type-text-value-changed.html")); |
| 208 } | 216 } |
| 209 | 217 |
| 210 IN_PROC_BROWSER_TEST_F(DumpAccessibilityEventsTest, | 218 IN_PROC_BROWSER_TEST_F(DumpAccessibilityEventsTest, |
| 211 AccessibilityEventsListboxFocus) { | 219 AccessibilityEventsListboxFocus) { |
| 212 RunEventTest(FILE_PATH_LITERAL("listbox-focus.html")); | 220 RunEventTest(FILE_PATH_LITERAL("listbox-focus.html")); |
| 213 } | 221 } |
| 214 | 222 |
| 215 // Flaky on Windows: http://crbug.com/486861 | 223 // Flaky on Windows: http://crbug.com/486861 |
| 216 // Flaky on Mac: http://crbug.com/588271 | 224 // Flaky on Mac: http://crbug.com/588271 |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 262 } | 270 } |
| 263 | 271 |
| 264 IN_PROC_BROWSER_TEST_F(DumpAccessibilityEventsTest, | 272 IN_PROC_BROWSER_TEST_F(DumpAccessibilityEventsTest, |
| 265 AccessibilityEventsTextChanged) { | 273 AccessibilityEventsTextChanged) { |
| 266 RunEventTest(FILE_PATH_LITERAL("text-changed.html")); | 274 RunEventTest(FILE_PATH_LITERAL("text-changed.html")); |
| 267 } | 275 } |
| 268 | 276 |
| 269 #endif // defined(OS_WIN) | 277 #endif // defined(OS_WIN) |
| 270 | 278 |
| 271 } // namespace content | 279 } // namespace content |
| OLD | NEW |