| 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 <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 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 218 AccessibilityEventsMenuListFocus) { | 218 AccessibilityEventsMenuListFocus) { |
| 219 RunEventTest(FILE_PATH_LITERAL("menulist-focus.html")); | 219 RunEventTest(FILE_PATH_LITERAL("menulist-focus.html")); |
| 220 } | 220 } |
| 221 | 221 |
| 222 IN_PROC_BROWSER_TEST_F(DumpAccessibilityEventsTest, | 222 IN_PROC_BROWSER_TEST_F(DumpAccessibilityEventsTest, |
| 223 AccessibilityEventsMenuListNext) { | 223 AccessibilityEventsMenuListNext) { |
| 224 RunEventTest(FILE_PATH_LITERAL("menulist-next.html")); | 224 RunEventTest(FILE_PATH_LITERAL("menulist-next.html")); |
| 225 } | 225 } |
| 226 | 226 |
| 227 IN_PROC_BROWSER_TEST_F(DumpAccessibilityEventsTest, | 227 IN_PROC_BROWSER_TEST_F(DumpAccessibilityEventsTest, |
| 228 AccessibilityEventsMenuListPopup) { |
| 229 RunEventTest(FILE_PATH_LITERAL("menulist-popup.html")); |
| 230 } |
| 231 |
| 232 IN_PROC_BROWSER_TEST_F(DumpAccessibilityEventsTest, |
| 228 AccessibilityEventsNameChange) { | 233 AccessibilityEventsNameChange) { |
| 229 RunEventTest(FILE_PATH_LITERAL("name-change.html")); | 234 RunEventTest(FILE_PATH_LITERAL("name-change.html")); |
| 230 } | 235 } |
| 231 | 236 |
| 232 IN_PROC_BROWSER_TEST_F(DumpAccessibilityEventsTest, | 237 IN_PROC_BROWSER_TEST_F(DumpAccessibilityEventsTest, |
| 233 AccessibilityEventsRemoveChild) { | 238 AccessibilityEventsRemoveChild) { |
| 234 RunEventTest(FILE_PATH_LITERAL("remove-child.html")); | 239 RunEventTest(FILE_PATH_LITERAL("remove-child.html")); |
| 235 } | 240 } |
| 236 | 241 |
| 237 IN_PROC_BROWSER_TEST_F(DumpAccessibilityEventsTest, | 242 IN_PROC_BROWSER_TEST_F(DumpAccessibilityEventsTest, |
| (...skipping 13 matching lines...) Expand all Loading... |
| 251 } | 256 } |
| 252 | 257 |
| 253 IN_PROC_BROWSER_TEST_F(DumpAccessibilityEventsTest, | 258 IN_PROC_BROWSER_TEST_F(DumpAccessibilityEventsTest, |
| 254 AccessibilityEventsTextChanged) { | 259 AccessibilityEventsTextChanged) { |
| 255 RunEventTest(FILE_PATH_LITERAL("text-changed.html")); | 260 RunEventTest(FILE_PATH_LITERAL("text-changed.html")); |
| 256 } | 261 } |
| 257 | 262 |
| 258 #endif // defined(OS_WIN) | 263 #endif // defined(OS_WIN) |
| 259 | 264 |
| 260 } // namespace content | 265 } // namespace content |
| OLD | NEW |