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

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

Issue 755173004: Support presentational iframes and make use of them in the uber frame. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years 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/files/file_util.h" 10 #include "base/files/file_util.h"
(...skipping 744 matching lines...) Expand 10 before | Expand all | Expand 10 after
755 755
756 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityIframe) { 756 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityIframe) {
757 RunTest(FILE_PATH_LITERAL("iframe.html")); 757 RunTest(FILE_PATH_LITERAL("iframe.html"));
758 } 758 }
759 759
760 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, 760 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest,
761 AccessibilityIframeCoordinates) { 761 AccessibilityIframeCoordinates) {
762 RunTest(FILE_PATH_LITERAL("iframe-coordinates.html")); 762 RunTest(FILE_PATH_LITERAL("iframe-coordinates.html"));
763 } 763 }
764 764
765 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest,
766 AccessibilityIframePresentational) {
767 RunTest(FILE_PATH_LITERAL("iframe-presentational.html"));
768 }
769
765 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityImg) { 770 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityImg) {
766 RunTest(FILE_PATH_LITERAL("img.html")); 771 RunTest(FILE_PATH_LITERAL("img.html"));
767 } 772 }
768 773
769 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputButton) { 774 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputButton) {
770 RunTest(FILE_PATH_LITERAL("input-button.html")); 775 RunTest(FILE_PATH_LITERAL("input-button.html"));
771 } 776 }
772 777
773 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, 778 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest,
774 AccessibilityInputButtonInMenu) { 779 AccessibilityInputButtonInMenu) {
(...skipping 312 matching lines...) Expand 10 before | Expand all | Expand 10 after
1087 1092
1088 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityVar) { 1093 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityVar) {
1089 RunTest(FILE_PATH_LITERAL("var.html")); 1094 RunTest(FILE_PATH_LITERAL("var.html"));
1090 } 1095 }
1091 1096
1092 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { 1097 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) {
1093 RunTest(FILE_PATH_LITERAL("wbr.html")); 1098 RunTest(FILE_PATH_LITERAL("wbr.html"));
1094 } 1099 }
1095 1100
1096 } // namespace content 1101 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698