| 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 328 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 339 RunEventTest(FILE_PATH_LITERAL("remove-hidden-attribute.html")); | 339 RunEventTest(FILE_PATH_LITERAL("remove-hidden-attribute.html")); |
| 340 } | 340 } |
| 341 | 341 |
| 342 IN_PROC_BROWSER_TEST_F( | 342 IN_PROC_BROWSER_TEST_F( |
| 343 DumpAccessibilityEventsTest, | 343 DumpAccessibilityEventsTest, |
| 344 AccessibilityEventsRemoveHiddenAttributeSubtree) { | 344 AccessibilityEventsRemoveHiddenAttributeSubtree) { |
| 345 RunEventTest(FILE_PATH_LITERAL("remove-hidden-attribute-subtree.html")); | 345 RunEventTest(FILE_PATH_LITERAL("remove-hidden-attribute-subtree.html")); |
| 346 } | 346 } |
| 347 | 347 |
| 348 IN_PROC_BROWSER_TEST_F(DumpAccessibilityEventsTest, | 348 IN_PROC_BROWSER_TEST_F(DumpAccessibilityEventsTest, |
| 349 AccessibilityEventsRemoveSubtree) { | 349 AccessibilityEventsTableColumnHidden) { |
| 350 RunEventTest(FILE_PATH_LITERAL("remove-subtree.html")); | 350 RunEventTest(FILE_PATH_LITERAL("table-column-hidden.html")); |
| 351 } | 351 } |
| 352 | 352 |
| 353 IN_PROC_BROWSER_TEST_F(DumpAccessibilityEventsTest, | 353 IN_PROC_BROWSER_TEST_F(DumpAccessibilityEventsTest, |
| 354 AccessibilityEventsTextChanged) { | 354 AccessibilityEventsTextChanged) { |
| 355 RunEventTest(FILE_PATH_LITERAL("text-changed.html")); | 355 RunEventTest(FILE_PATH_LITERAL("text-changed.html")); |
| 356 } | 356 } |
| 357 | 357 |
| 358 } // namespace content | 358 } // namespace content |
| OLD | NEW |