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

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

Issue 55763002: Add a test for <dialog> in the accessibility tree (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add win expectation Created 7 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
« no previous file with comments | « no previous file | content/test/data/accessibility/dialog.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/file_util.h" 9 #include "base/file_util.h"
10 #include "base/logging.h" 10 #include "base/logging.h"
(...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after
325 325
326 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityCanvas) { 326 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityCanvas) {
327 RunTest(FILE_PATH_LITERAL("canvas.html")); 327 RunTest(FILE_PATH_LITERAL("canvas.html"));
328 } 328 }
329 329
330 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, 330 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest,
331 AccessibilityCheckboxNameCalc) { 331 AccessibilityCheckboxNameCalc) {
332 RunTest(FILE_PATH_LITERAL("checkbox-name-calc.html")); 332 RunTest(FILE_PATH_LITERAL("checkbox-name-calc.html"));
333 } 333 }
334 334
335 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityDialog) {
336 RunTest(FILE_PATH_LITERAL("dialog.html"));
337 }
338
335 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityDiv) { 339 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityDiv) {
336 RunTest(FILE_PATH_LITERAL("div.html")); 340 RunTest(FILE_PATH_LITERAL("div.html"));
337 } 341 }
338 342
339 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityDl) { 343 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityDl) {
340 RunTest(FILE_PATH_LITERAL("dl.html")); 344 RunTest(FILE_PATH_LITERAL("dl.html"));
341 } 345 }
342 346
343 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, 347 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest,
344 AccessibilityContenteditableDescendants) { 348 AccessibilityContenteditableDescendants) {
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
447 451
448 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityUl) { 452 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityUl) {
449 RunTest(FILE_PATH_LITERAL("ul.html")); 453 RunTest(FILE_PATH_LITERAL("ul.html"));
450 } 454 }
451 455
452 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { 456 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) {
453 RunTest(FILE_PATH_LITERAL("wbr.html")); 457 RunTest(FILE_PATH_LITERAL("wbr.html"));
454 } 458 }
455 459
456 } // namespace content 460 } // namespace content
OLDNEW
« no previous file with comments | « no previous file | content/test/data/accessibility/dialog.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698