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

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

Issue 665843002: Change condition for adding AX_STATE_EXPANDED (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove AXExpanded 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 368 matching lines...) Expand 10 before | Expand all | Expand 10 after
379 } 379 }
380 380
381 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaDefinition) { 381 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaDefinition) {
382 RunTest(FILE_PATH_LITERAL("aria-definition.html")); 382 RunTest(FILE_PATH_LITERAL("aria-definition.html"));
383 } 383 }
384 384
385 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaDialog) { 385 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaDialog) {
386 RunTest(FILE_PATH_LITERAL("aria-dialog.html")); 386 RunTest(FILE_PATH_LITERAL("aria-dialog.html"));
387 } 387 }
388 388
389 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaExpanded) {
390 RunTest(FILE_PATH_LITERAL("aria-expanded.html"));
391 }
392
389 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaHasPopup) { 393 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaHasPopup) {
390 RunTest(FILE_PATH_LITERAL("aria-haspopup.html")); 394 RunTest(FILE_PATH_LITERAL("aria-haspopup.html"));
391 } 395 }
392 396
393 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaHeading) { 397 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaHeading) {
394 RunTest(FILE_PATH_LITERAL("aria-heading.html")); 398 RunTest(FILE_PATH_LITERAL("aria-heading.html"));
395 } 399 }
396 400
397 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaHidden) { 401 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaHidden) {
398 RunTest(FILE_PATH_LITERAL("aria-hidden.html")); 402 RunTest(FILE_PATH_LITERAL("aria-hidden.html"));
(...skipping 622 matching lines...) Expand 10 before | Expand all | Expand 10 after
1021 1025
1022 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityUl) { 1026 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityUl) {
1023 RunTest(FILE_PATH_LITERAL("ul.html")); 1027 RunTest(FILE_PATH_LITERAL("ul.html"));
1024 } 1028 }
1025 1029
1026 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { 1030 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) {
1027 RunTest(FILE_PATH_LITERAL("wbr.html")); 1031 RunTest(FILE_PATH_LITERAL("wbr.html"));
1028 } 1032 }
1029 1033
1030 } // namespace content 1034 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698