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 509 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
520 } | 520 } |
521 | 521 |
522 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityDialog) { | 522 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityDialog) { |
523 RunTest(FILE_PATH_LITERAL("dialog.html")); | 523 RunTest(FILE_PATH_LITERAL("dialog.html")); |
524 } | 524 } |
525 | 525 |
526 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityDiv) { | 526 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityDiv) { |
527 RunTest(FILE_PATH_LITERAL("div.html")); | 527 RunTest(FILE_PATH_LITERAL("div.html")); |
528 } | 528 } |
529 | 529 |
530 // crbug.com/418600 | 530 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityDl) { |
531 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityDl) { | |
532 RunTest(FILE_PATH_LITERAL("dl.html")); | 531 RunTest(FILE_PATH_LITERAL("dl.html")); |
533 } | 532 } |
534 | 533 |
535 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 534 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
536 AccessibilityContenteditableDescendants) { | 535 AccessibilityContenteditableDescendants) { |
537 RunTest(FILE_PATH_LITERAL("contenteditable-descendants.html")); | 536 RunTest(FILE_PATH_LITERAL("contenteditable-descendants.html")); |
538 } | 537 } |
539 | 538 |
540 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityEm) { | 539 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityEm) { |
541 RunTest(FILE_PATH_LITERAL("em.html")); | 540 RunTest(FILE_PATH_LITERAL("em.html")); |
(...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
759 | 758 |
760 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityUl) { | 759 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityUl) { |
761 RunTest(FILE_PATH_LITERAL("ul.html")); | 760 RunTest(FILE_PATH_LITERAL("ul.html")); |
762 } | 761 } |
763 | 762 |
764 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { | 763 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { |
765 RunTest(FILE_PATH_LITERAL("wbr.html")); | 764 RunTest(FILE_PATH_LITERAL("wbr.html")); |
766 } | 765 } |
767 | 766 |
768 } // namespace content | 767 } // namespace content |
OLD | NEW |