| 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 692 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 703 } | 703 } |
| 704 | 704 |
| 705 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityEm) { | 705 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityEm) { |
| 706 RunTest(FILE_PATH_LITERAL("em.html")); | 706 RunTest(FILE_PATH_LITERAL("em.html")); |
| 707 } | 707 } |
| 708 | 708 |
| 709 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityFieldset) { | 709 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityFieldset) { |
| 710 RunTest(FILE_PATH_LITERAL("fieldset.html")); | 710 RunTest(FILE_PATH_LITERAL("fieldset.html")); |
| 711 } | 711 } |
| 712 | 712 |
| 713 //Disabled because of https://codereview.chromium.org/713873002 temporarily. | 713 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityFigcaption) { |
| 714 //After blink code is merged, it will be enabled. | |
| 715 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | |
| 716 DISABLED_AccessibilityFigcaption) { | |
| 717 RunTest(FILE_PATH_LITERAL("figcaption.html")); | 714 RunTest(FILE_PATH_LITERAL("figcaption.html")); |
| 718 } | 715 } |
| 719 | 716 |
| 720 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityFigure) { | 717 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityFigure) { |
| 721 RunTest(FILE_PATH_LITERAL("figure.html")); | 718 RunTest(FILE_PATH_LITERAL("figure.html")); |
| 722 } | 719 } |
| 723 | 720 |
| 724 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityFooter) { | 721 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityFooter) { |
| 725 RunTest(FILE_PATH_LITERAL("footer.html")); | 722 RunTest(FILE_PATH_LITERAL("footer.html")); |
| 726 } | 723 } |
| (...skipping 362 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1089 | 1086 |
| 1090 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityVar) { | 1087 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityVar) { |
| 1091 RunTest(FILE_PATH_LITERAL("var.html")); | 1088 RunTest(FILE_PATH_LITERAL("var.html")); |
| 1092 } | 1089 } |
| 1093 | 1090 |
| 1094 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { | 1091 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { |
| 1095 RunTest(FILE_PATH_LITERAL("wbr.html")); | 1092 RunTest(FILE_PATH_LITERAL("wbr.html")); |
| 1096 } | 1093 } |
| 1097 | 1094 |
| 1098 } // namespace content | 1095 } // namespace content |
| OLD | NEW |