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

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

Issue 591363003: Adds conversion rule for WebAXRoleDetails (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Adding dump ax test 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 489 matching lines...) Expand 10 before | Expand all | Expand 10 after
500 } 500 }
501 501
502 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityCol) { 502 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityCol) {
503 RunTest(FILE_PATH_LITERAL("col.html")); 503 RunTest(FILE_PATH_LITERAL("col.html"));
504 } 504 }
505 505
506 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityDel) { 506 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityDel) {
507 RunTest(FILE_PATH_LITERAL("del.html")); 507 RunTest(FILE_PATH_LITERAL("del.html"));
508 } 508 }
509 509
510 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityDetails) {
511 RunTest(FILE_PATH_LITERAL("details.html"));
512 }
513
510 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityDfn) { 514 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityDfn) {
511 RunTest(FILE_PATH_LITERAL("dfn.html")); 515 RunTest(FILE_PATH_LITERAL("dfn.html"));
512 } 516 }
513 517
514 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityDialog) { 518 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityDialog) {
515 RunTest(FILE_PATH_LITERAL("dialog.html")); 519 RunTest(FILE_PATH_LITERAL("dialog.html"));
516 } 520 }
517 521
518 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityDiv) { 522 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityDiv) {
519 RunTest(FILE_PATH_LITERAL("div.html")); 523 RunTest(FILE_PATH_LITERAL("div.html"));
(...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after
738 742
739 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityUl) { 743 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityUl) {
740 RunTest(FILE_PATH_LITERAL("ul.html")); 744 RunTest(FILE_PATH_LITERAL("ul.html"));
741 } 745 }
742 746
743 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { 747 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) {
744 RunTest(FILE_PATH_LITERAL("wbr.html")); 748 RunTest(FILE_PATH_LITERAL("wbr.html"));
745 } 749 }
746 750
747 } // namespace content 751 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698