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

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

Issue 2382343002: Fix issue with font family and language in accessibility tree (Closed)
Patch Set: Fix win expectation Created 4 years, 2 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
« no previous file with comments | « no previous file | content/renderer/accessibility/blink_ax_tree_source.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 }; 121 };
122 122
123 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityCSSColor) { 123 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityCSSColor) {
124 RunCSSTest(FILE_PATH_LITERAL("color.html")); 124 RunCSSTest(FILE_PATH_LITERAL("color.html"));
125 } 125 }
126 126
127 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityCSSFontStyle) { 127 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityCSSFontStyle) {
128 RunCSSTest(FILE_PATH_LITERAL("font-style.html")); 128 RunCSSTest(FILE_PATH_LITERAL("font-style.html"));
129 } 129 }
130 130
131 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityCSSFontFamily) {
132 RunCSSTest(FILE_PATH_LITERAL("font-family.html"));
133 }
134
131 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityCSSLanguage) { 135 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityCSSLanguage) {
132 RunCSSTest(FILE_PATH_LITERAL("language.html")); 136 RunCSSTest(FILE_PATH_LITERAL("language.html"));
133 } 137 }
134 138
135 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityA) { 139 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityA) {
136 RunHtmlTest(FILE_PATH_LITERAL("a.html")); 140 RunHtmlTest(FILE_PATH_LITERAL("a.html"));
137 } 141 }
138 142
139 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAbbr) { 143 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAbbr) {
140 RunHtmlTest(FILE_PATH_LITERAL("abbr.html")); 144 RunHtmlTest(FILE_PATH_LITERAL("abbr.html"));
(...skipping 1233 matching lines...) Expand 10 before | Expand all | Expand 10 after
1374 // crbug.com/281952 1378 // crbug.com/281952
1375 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityVideo) { 1379 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityVideo) {
1376 RunHtmlTest(FILE_PATH_LITERAL("video.html")); 1380 RunHtmlTest(FILE_PATH_LITERAL("video.html"));
1377 } 1381 }
1378 1382
1379 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { 1383 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) {
1380 RunHtmlTest(FILE_PATH_LITERAL("wbr.html")); 1384 RunHtmlTest(FILE_PATH_LITERAL("wbr.html"));
1381 } 1385 }
1382 1386
1383 } // namespace content 1387 } // namespace content
OLDNEW
« no previous file with comments | « no previous file | content/renderer/accessibility/blink_ax_tree_source.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698