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 432 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
443 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 443 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
444 AccessibilityModalDialogOpened) { | 444 AccessibilityModalDialogOpened) { |
445 RunTest(FILE_PATH_LITERAL("modal-dialog-opened.html")); | 445 RunTest(FILE_PATH_LITERAL("modal-dialog-opened.html")); |
446 } | 446 } |
447 | 447 |
448 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 448 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
449 AccessibilityModalDialogInIframeClosed) { | 449 AccessibilityModalDialogInIframeClosed) { |
450 RunTest(FILE_PATH_LITERAL("modal-dialog-in-iframe-closed.html")); | 450 RunTest(FILE_PATH_LITERAL("modal-dialog-in-iframe-closed.html")); |
451 } | 451 } |
452 | 452 |
| 453 // TODO(dmazzoni): fix this test after Blink change that broke it lands. |
| 454 // http://crbug.com/353067 |
453 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 455 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
454 AccessibilityModalDialogInIframeOpened) { | 456 DISABLED_AccessibilityModalDialogInIframeOpened) { |
455 RunTest(FILE_PATH_LITERAL("modal-dialog-in-iframe-opened.html")); | 457 RunTest(FILE_PATH_LITERAL("modal-dialog-in-iframe-opened.html")); |
456 } | 458 } |
457 | 459 |
458 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 460 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
459 AccessibilityModalDialogStack) { | 461 AccessibilityModalDialogStack) { |
460 RunTest(FILE_PATH_LITERAL("modal-dialog-stack.html")); | 462 RunTest(FILE_PATH_LITERAL("modal-dialog-stack.html")); |
461 } | 463 } |
462 | 464 |
463 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityP) { | 465 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityP) { |
464 RunTest(FILE_PATH_LITERAL("p.html")); | 466 RunTest(FILE_PATH_LITERAL("p.html")); |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
505 | 507 |
506 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityUl) { | 508 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityUl) { |
507 RunTest(FILE_PATH_LITERAL("ul.html")); | 509 RunTest(FILE_PATH_LITERAL("ul.html")); |
508 } | 510 } |
509 | 511 |
510 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { | 512 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { |
511 RunTest(FILE_PATH_LITERAL("wbr.html")); | 513 RunTest(FILE_PATH_LITERAL("wbr.html")); |
512 } | 514 } |
513 | 515 |
514 } // namespace content | 516 } // namespace content |
OLD | NEW |