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