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/files/file_util.h" | 10 #include "base/files/file_util.h" |
(...skipping 505 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
516 } | 516 } |
517 | 517 |
518 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityDialog) { | 518 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityDialog) { |
519 RunTest(FILE_PATH_LITERAL("dialog.html")); | 519 RunTest(FILE_PATH_LITERAL("dialog.html")); |
520 } | 520 } |
521 | 521 |
522 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityDiv) { | 522 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityDiv) { |
523 RunTest(FILE_PATH_LITERAL("div.html")); | 523 RunTest(FILE_PATH_LITERAL("div.html")); |
524 } | 524 } |
525 | 525 |
526 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityDl) { | 526 // crbug.com/418600 |
| 527 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityDl) { |
527 RunTest(FILE_PATH_LITERAL("dl.html")); | 528 RunTest(FILE_PATH_LITERAL("dl.html")); |
528 } | 529 } |
529 | 530 |
530 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 531 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
531 AccessibilityContenteditableDescendants) { | 532 AccessibilityContenteditableDescendants) { |
532 RunTest(FILE_PATH_LITERAL("contenteditable-descendants.html")); | 533 RunTest(FILE_PATH_LITERAL("contenteditable-descendants.html")); |
533 } | 534 } |
534 | 535 |
535 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityEm) { | 536 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityEm) { |
536 RunTest(FILE_PATH_LITERAL("em.html")); | 537 RunTest(FILE_PATH_LITERAL("em.html")); |
(...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
750 | 751 |
751 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityUl) { | 752 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityUl) { |
752 RunTest(FILE_PATH_LITERAL("ul.html")); | 753 RunTest(FILE_PATH_LITERAL("ul.html")); |
753 } | 754 } |
754 | 755 |
755 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { | 756 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { |
756 RunTest(FILE_PATH_LITERAL("wbr.html")); | 757 RunTest(FILE_PATH_LITERAL("wbr.html")); |
757 } | 758 } |
758 | 759 |
759 } // namespace content | 760 } // namespace content |
OLD | NEW |