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

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

Issue 175613002: Include relationship ARIA objects in serialized accessibility tree (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Revert spurious changes Created 6 years, 9 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 | Annotate | Revision Log
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/file_util.h" 10 #include "base/file_util.h"
(...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after
265 265
266 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, 266 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest,
267 AccessibilityAriaAutocomplete) { 267 AccessibilityAriaAutocomplete) {
268 RunTest(FILE_PATH_LITERAL("aria-autocomplete.html")); 268 RunTest(FILE_PATH_LITERAL("aria-autocomplete.html"));
269 } 269 }
270 270
271 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaCombobox) { 271 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaCombobox) {
272 RunTest(FILE_PATH_LITERAL("aria-combobox.html")); 272 RunTest(FILE_PATH_LITERAL("aria-combobox.html"));
273 } 273 }
274 274
275 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaFlowto) {
276 RunTest(FILE_PATH_LITERAL("aria-flowto.html"));
277 }
278
275 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaInvalid) { 279 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaInvalid) {
276 RunTest(FILE_PATH_LITERAL("aria-invalid.html")); 280 RunTest(FILE_PATH_LITERAL("aria-invalid.html"));
277 } 281 }
278 282
279 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaLevel) { 283 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaLevel) {
280 RunTest(FILE_PATH_LITERAL("aria-level.html")); 284 RunTest(FILE_PATH_LITERAL("aria-level.html"));
281 } 285 }
282 286
283 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaMenu) { 287 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaMenu) {
284 RunTest(FILE_PATH_LITERAL("aria-menu.html")); 288 RunTest(FILE_PATH_LITERAL("aria-menu.html"));
(...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after
499 503
500 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityUl) { 504 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityUl) {
501 RunTest(FILE_PATH_LITERAL("ul.html")); 505 RunTest(FILE_PATH_LITERAL("ul.html"));
502 } 506 }
503 507
504 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { 508 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) {
505 RunTest(FILE_PATH_LITERAL("wbr.html")); 509 RunTest(FILE_PATH_LITERAL("wbr.html"));
506 } 510 }
507 511
508 } // namespace content 512 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698