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/path_service.h" | 10 #include "base/path_service.h" |
(...skipping 727 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
738 } | 738 } |
739 | 739 |
740 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityI) { | 740 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityI) { |
741 RunHtmlTest(FILE_PATH_LITERAL("i.html")); | 741 RunHtmlTest(FILE_PATH_LITERAL("i.html")); |
742 } | 742 } |
743 | 743 |
744 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityIframe) { | 744 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityIframe) { |
745 RunHtmlTest(FILE_PATH_LITERAL("iframe.html")); | 745 RunHtmlTest(FILE_PATH_LITERAL("iframe.html")); |
746 } | 746 } |
747 | 747 |
| 748 // Flaky. See http://crbug.com/224659. |
748 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 749 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
749 AccessibilityIframeCoordinates) { | 750 DISABLED_AccessibilityIframeCoordinates) { |
750 RunHtmlTest(FILE_PATH_LITERAL("iframe-coordinates.html")); | 751 RunHtmlTest(FILE_PATH_LITERAL("iframe-coordinates.html")); |
751 } | 752 } |
752 | 753 |
753 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 754 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
754 AccessibilityIframePresentational) { | 755 AccessibilityIframePresentational) { |
755 RunHtmlTest(FILE_PATH_LITERAL("iframe-presentational.html")); | 756 RunHtmlTest(FILE_PATH_LITERAL("iframe-presentational.html")); |
756 } | 757 } |
757 | 758 |
758 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityImg) { | 759 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityImg) { |
759 RunHtmlTest(FILE_PATH_LITERAL("img.html")); | 760 RunHtmlTest(FILE_PATH_LITERAL("img.html")); |
(...skipping 388 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1148 // crbug.com/281952 | 1149 // crbug.com/281952 |
1149 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityVideo) { | 1150 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityVideo) { |
1150 RunHtmlTest(FILE_PATH_LITERAL("video.html")); | 1151 RunHtmlTest(FILE_PATH_LITERAL("video.html")); |
1151 } | 1152 } |
1152 | 1153 |
1153 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { | 1154 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { |
1154 RunHtmlTest(FILE_PATH_LITERAL("wbr.html")); | 1155 RunHtmlTest(FILE_PATH_LITERAL("wbr.html")); |
1155 } | 1156 } |
1156 | 1157 |
1157 } // namespace content | 1158 } // namespace content |
OLD | NEW |