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

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

Issue 634533002: Fixing IA2 role for input type attribute in button and checkbox state with menu and aria role menu … (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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
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 603 matching lines...) Expand 10 before | Expand all | Expand 10 after
614 614
615 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, 615 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest,
616 AccessibilityInputButtonInMenu) { 616 AccessibilityInputButtonInMenu) {
617 RunTest(FILE_PATH_LITERAL("input-button-in-menu.html")); 617 RunTest(FILE_PATH_LITERAL("input-button-in-menu.html"));
618 } 618 }
619 619
620 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputCheckBox) { 620 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputCheckBox) {
621 RunTest(FILE_PATH_LITERAL("input-checkbox.html")); 621 RunTest(FILE_PATH_LITERAL("input-checkbox.html"));
622 } 622 }
623 623
624 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest,
625 AccessibilityInputCheckBoxInMenu) {
626 RunTest(FILE_PATH_LITERAL("input-checkbox-in-menu.html"));
627 }
628
624 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputColor) { 629 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputColor) {
625 RunTest(FILE_PATH_LITERAL("input-color.html")); 630 RunTest(FILE_PATH_LITERAL("input-color.html"));
626 } 631 }
627 632
628 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, 633 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest,
629 AccessibilityInputImageButtonInMenu) { 634 AccessibilityInputImageButtonInMenu) {
630 RunTest(FILE_PATH_LITERAL("input-image-button-in-menu.html")); 635 RunTest(FILE_PATH_LITERAL("input-image-button-in-menu.html"));
631 } 636 }
632 637
633 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputRadio) { 638 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputRadio) {
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after
793 798
794 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityUl) { 799 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityUl) {
795 RunTest(FILE_PATH_LITERAL("ul.html")); 800 RunTest(FILE_PATH_LITERAL("ul.html"));
796 } 801 }
797 802
798 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { 803 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) {
799 RunTest(FILE_PATH_LITERAL("wbr.html")); 804 RunTest(FILE_PATH_LITERAL("wbr.html"));
800 } 805 }
801 806
802 } // namespace content 807 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698