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

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: Fix gn build Created 4 years, 8 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 857 matching lines...) Expand 10 before | Expand all | Expand 10 after
868 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, 868 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest,
869 AccessibilityIframeCoordinatesCrossProcess) { 869 AccessibilityIframeCoordinatesCrossProcess) {
870 RunHtmlTest(FILE_PATH_LITERAL("iframe-coordinates-cross-process.html")); 870 RunHtmlTest(FILE_PATH_LITERAL("iframe-coordinates-cross-process.html"));
871 } 871 }
872 872
873 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, 873 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest,
874 AccessibilityIframePresentational) { 874 AccessibilityIframePresentational) {
875 RunHtmlTest(FILE_PATH_LITERAL("iframe-presentational.html")); 875 RunHtmlTest(FILE_PATH_LITERAL("iframe-presentational.html"));
876 } 876 }
877 877
878 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest,
879 AccessibilityIframeTransform) {
880 RunHtmlTest(FILE_PATH_LITERAL("iframe-transform.html"));
881 }
882
883 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest,
884 AccessibilityIframeTransformCrossProcess) {
885 RunHtmlTest(FILE_PATH_LITERAL("iframe-transform-cross-process.html"));
886 }
887
888 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest,
889 AccessibilityIframeTransformNested) {
890 RunHtmlTest(FILE_PATH_LITERAL("iframe-transform-nested.html"));
891 }
892
893 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest,
894 AccessibilityIframeTransformNestedCrossProcess) {
895 RunHtmlTest(FILE_PATH_LITERAL("iframe-transform-nested-cross-process.html"));
896 }
897
898 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest,
899 AccessibilityIframeTransformScrolled) {
900 RunHtmlTest(FILE_PATH_LITERAL("iframe-transform-scrolled.html"));
901 }
902
878 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityImg) { 903 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityImg) {
879 RunHtmlTest(FILE_PATH_LITERAL("img.html")); 904 RunHtmlTest(FILE_PATH_LITERAL("img.html"));
880 } 905 }
881 906
882 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityImgEmptyAlt) { 907 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityImgEmptyAlt) {
883 RunHtmlTest(FILE_PATH_LITERAL("img-empty-alt.html")); 908 RunHtmlTest(FILE_PATH_LITERAL("img-empty-alt.html"));
884 } 909 }
885 910
886 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputButton) { 911 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputButton) {
887 RunHtmlTest(FILE_PATH_LITERAL("input-button.html")); 912 RunHtmlTest(FILE_PATH_LITERAL("input-button.html"));
(...skipping 424 matching lines...) Expand 10 before | Expand all | Expand 10 after
1312 // crbug.com/281952 1337 // crbug.com/281952
1313 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityVideo) { 1338 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityVideo) {
1314 RunHtmlTest(FILE_PATH_LITERAL("video.html")); 1339 RunHtmlTest(FILE_PATH_LITERAL("video.html"));
1315 } 1340 }
1316 1341
1317 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { 1342 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) {
1318 RunHtmlTest(FILE_PATH_LITERAL("wbr.html")); 1343 RunHtmlTest(FILE_PATH_LITERAL("wbr.html"));
1319 } 1344 }
1320 1345
1321 } // namespace content 1346 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698