Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(321)

Side by Side Diff: content/browser/accessibility/dump_accessibility_tree_browsertest.cc

Issue 1713723002: Implement accessibility support for CSS-transformed iframes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 830 matching lines...) Expand 10 before | Expand all | Expand 10 after
841 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, 841 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest,
842 AccessibilityIframeCoordinatesCrossProcess) { 842 AccessibilityIframeCoordinatesCrossProcess) {
843 RunHtmlTest(FILE_PATH_LITERAL("iframe-coordinates-cross-process.html")); 843 RunHtmlTest(FILE_PATH_LITERAL("iframe-coordinates-cross-process.html"));
844 } 844 }
845 845
846 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, 846 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest,
847 AccessibilityIframePresentational) { 847 AccessibilityIframePresentational) {
848 RunHtmlTest(FILE_PATH_LITERAL("iframe-presentational.html")); 848 RunHtmlTest(FILE_PATH_LITERAL("iframe-presentational.html"));
849 } 849 }
850 850
851 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest,
852 AccessibilityIframeTransform) {
853 RunHtmlTest(FILE_PATH_LITERAL("iframe-transform.html"));
854 }
855
856 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest,
857 AccessibilityIframeTransformCrossProcess) {
858 RunHtmlTest(FILE_PATH_LITERAL("iframe-transform-cross-process.html"));
859 }
860
861 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest,
862 AccessibilityIframeTransformScrolled) {
863 RunHtmlTest(FILE_PATH_LITERAL("iframe-transform-scrolled.html"));
864 }
865
851 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityImg) { 866 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityImg) {
852 RunHtmlTest(FILE_PATH_LITERAL("img.html")); 867 RunHtmlTest(FILE_PATH_LITERAL("img.html"));
853 } 868 }
854 869
855 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityImgEmptyAlt) { 870 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityImgEmptyAlt) {
856 RunHtmlTest(FILE_PATH_LITERAL("img-empty-alt.html")); 871 RunHtmlTest(FILE_PATH_LITERAL("img-empty-alt.html"));
857 } 872 }
858 873
859 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputButton) { 874 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputButton) {
860 RunHtmlTest(FILE_PATH_LITERAL("input-button.html")); 875 RunHtmlTest(FILE_PATH_LITERAL("input-button.html"));
(...skipping 408 matching lines...) Expand 10 before | Expand all | Expand 10 after
1269 // crbug.com/281952 1284 // crbug.com/281952
1270 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityVideo) { 1285 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityVideo) {
1271 RunHtmlTest(FILE_PATH_LITERAL("video.html")); 1286 RunHtmlTest(FILE_PATH_LITERAL("video.html"));
1272 } 1287 }
1273 1288
1274 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { 1289 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) {
1275 RunHtmlTest(FILE_PATH_LITERAL("wbr.html")); 1290 RunHtmlTest(FILE_PATH_LITERAL("wbr.html"));
1276 } 1291 }
1277 1292
1278 } // namespace content 1293 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698