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

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

Issue 709523002: AX_ROLE_HORIZONTAL_RULE is not required. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month 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 722 matching lines...) Expand 10 before | Expand all | Expand 10 after
733 } 733 }
734 734
735 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityHeader) { 735 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityHeader) {
736 RunTest(FILE_PATH_LITERAL("header.html")); 736 RunTest(FILE_PATH_LITERAL("header.html"));
737 } 737 }
738 738
739 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityHeading) { 739 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityHeading) {
740 RunTest(FILE_PATH_LITERAL("heading.html")); 740 RunTest(FILE_PATH_LITERAL("heading.html"));
741 } 741 }
742 742
743 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityHR) { 743 // Disabling temporarily. Will Enable once blink returns correct
744 // role for hr tag.
745 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest,
746 DISABLED_AccessibilityHR) {
744 RunTest(FILE_PATH_LITERAL("hr.html")); 747 RunTest(FILE_PATH_LITERAL("hr.html"));
745 } 748 }
746 749
747 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityI) { 750 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityI) {
748 RunTest(FILE_PATH_LITERAL("i.html")); 751 RunTest(FILE_PATH_LITERAL("i.html"));
749 } 752 }
750 753
751 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityIframe) { 754 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityIframe) {
752 RunTest(FILE_PATH_LITERAL("iframe.html")); 755 RunTest(FILE_PATH_LITERAL("iframe.html"));
753 } 756 }
(...skipping 332 matching lines...) Expand 10 before | Expand all | Expand 10 after
1086 1089
1087 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityVar) { 1090 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityVar) {
1088 RunTest(FILE_PATH_LITERAL("var.html")); 1091 RunTest(FILE_PATH_LITERAL("var.html"));
1089 } 1092 }
1090 1093
1091 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { 1094 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) {
1092 RunTest(FILE_PATH_LITERAL("wbr.html")); 1095 RunTest(FILE_PATH_LITERAL("wbr.html"));
1093 } 1096 }
1094 1097
1095 } // namespace content 1098 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/accessibility/browser_accessibility_win.cc ('k') | content/renderer/accessibility/blink_ax_enum_conversion.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698