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

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: Return gfx::Rect from AccessibilityTransformToRootCoordSpace, get rid of ifdefed-out code accidenta… 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 AccessibilityIframeTransformNested) {
863 RunHtmlTest(FILE_PATH_LITERAL("iframe-transform-nested.html"));
864 }
865
866 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest,
867 AccessibilityIframeTransformScrolled) {
868 RunHtmlTest(FILE_PATH_LITERAL("iframe-transform-scrolled.html"));
869 }
870
851 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityImg) { 871 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityImg) {
852 RunHtmlTest(FILE_PATH_LITERAL("img.html")); 872 RunHtmlTest(FILE_PATH_LITERAL("img.html"));
853 } 873 }
854 874
855 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityImgEmptyAlt) { 875 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityImgEmptyAlt) {
856 RunHtmlTest(FILE_PATH_LITERAL("img-empty-alt.html")); 876 RunHtmlTest(FILE_PATH_LITERAL("img-empty-alt.html"));
857 } 877 }
858 878
859 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputButton) { 879 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputButton) {
860 RunHtmlTest(FILE_PATH_LITERAL("input-button.html")); 880 RunHtmlTest(FILE_PATH_LITERAL("input-button.html"));
(...skipping 424 matching lines...) Expand 10 before | Expand all | Expand 10 after
1285 // crbug.com/281952 1305 // crbug.com/281952
1286 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityVideo) { 1306 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityVideo) {
1287 RunHtmlTest(FILE_PATH_LITERAL("video.html")); 1307 RunHtmlTest(FILE_PATH_LITERAL("video.html"));
1288 } 1308 }
1289 1309
1290 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { 1310 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) {
1291 RunHtmlTest(FILE_PATH_LITERAL("wbr.html")); 1311 RunHtmlTest(FILE_PATH_LITERAL("wbr.html"));
1292 } 1312 }
1293 1313
1294 } // namespace content 1314 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698