| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/command_line.h" | 9 #include "base/command_line.h" |
| 10 #include "base/file_util.h" | 10 #include "base/file_util.h" |
| (...skipping 416 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 427 | 427 |
| 428 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityListMarkers) { | 428 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityListMarkers) { |
| 429 RunTest(FILE_PATH_LITERAL("list-markers.html")); | 429 RunTest(FILE_PATH_LITERAL("list-markers.html")); |
| 430 } | 430 } |
| 431 | 431 |
| 432 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 432 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
| 433 AccessibilityModalDialogClosed) { | 433 AccessibilityModalDialogClosed) { |
| 434 RunTest(FILE_PATH_LITERAL("modal-dialog-closed.html")); | 434 RunTest(FILE_PATH_LITERAL("modal-dialog-closed.html")); |
| 435 } | 435 } |
| 436 | 436 |
| 437 // TODO(falken): Rebaseline modal dialog tests after Blink r165040 is relanded. |
| 437 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 438 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
| 438 AccessibilityModalDialogOpened) { | 439 DISABLED_AccessibilityModalDialogOpened) { |
| 439 RunTest(FILE_PATH_LITERAL("modal-dialog-opened.html")); | 440 RunTest(FILE_PATH_LITERAL("modal-dialog-opened.html")); |
| 440 } | 441 } |
| 441 | 442 |
| 442 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 443 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
| 443 AccessibilityModalDialogInIframeClosed) { | 444 AccessibilityModalDialogInIframeClosed) { |
| 444 RunTest(FILE_PATH_LITERAL("modal-dialog-in-iframe-closed.html")); | 445 RunTest(FILE_PATH_LITERAL("modal-dialog-in-iframe-closed.html")); |
| 445 } | 446 } |
| 446 | 447 |
| 447 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 448 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
| 448 AccessibilityModalDialogInIframeOpened) { | 449 DISABLED_AccessibilityModalDialogInIframeOpened) { |
| 449 RunTest(FILE_PATH_LITERAL("modal-dialog-in-iframe-opened.html")); | 450 RunTest(FILE_PATH_LITERAL("modal-dialog-in-iframe-opened.html")); |
| 450 } | 451 } |
| 451 | 452 |
| 452 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 453 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
| 453 AccessibilityModalDialogStack) { | 454 DISABLED_AccessibilityModalDialogStack) { |
| 454 RunTest(FILE_PATH_LITERAL("modal-dialog-stack.html")); | 455 RunTest(FILE_PATH_LITERAL("modal-dialog-stack.html")); |
| 455 } | 456 } |
| 456 | 457 |
| 457 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityP) { | 458 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityP) { |
| 458 RunTest(FILE_PATH_LITERAL("p.html")); | 459 RunTest(FILE_PATH_LITERAL("p.html")); |
| 459 } | 460 } |
| 460 | 461 |
| 461 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityRegion) { | 462 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityRegion) { |
| 462 RunTest(FILE_PATH_LITERAL("region.html")); | 463 RunTest(FILE_PATH_LITERAL("region.html")); |
| 463 } | 464 } |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 499 | 500 |
| 500 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityUl) { | 501 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityUl) { |
| 501 RunTest(FILE_PATH_LITERAL("ul.html")); | 502 RunTest(FILE_PATH_LITERAL("ul.html")); |
| 502 } | 503 } |
| 503 | 504 |
| 504 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { | 505 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { |
| 505 RunTest(FILE_PATH_LITERAL("wbr.html")); | 506 RunTest(FILE_PATH_LITERAL("wbr.html")); |
| 506 } | 507 } |
| 507 | 508 |
| 508 } // namespace content | 509 } // namespace content |
| OLD | NEW |