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

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

Issue 607803002: IAccessible2 state not defined for input type checkbox. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@323161exposeinputtypes
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 314 matching lines...) Expand 10 before | Expand all | Expand 10 after
325 325
326 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaAtomic) { 326 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaAtomic) {
327 RunTest(FILE_PATH_LITERAL("aria-atomic.html")); 327 RunTest(FILE_PATH_LITERAL("aria-atomic.html"));
328 } 328 }
329 329
330 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, 330 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest,
331 AccessibilityAriaAutocomplete) { 331 AccessibilityAriaAutocomplete) {
332 RunTest(FILE_PATH_LITERAL("aria-autocomplete.html")); 332 RunTest(FILE_PATH_LITERAL("aria-autocomplete.html"));
333 } 333 }
334 334
335 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaCheckBox) {
336 RunTest(FILE_PATH_LITERAL("aria-checkbox.html"));
337 }
338
335 // crbug.com/98976 will cause new elements to be added to the Blink a11y tree 339 // crbug.com/98976 will cause new elements to be added to the Blink a11y tree
336 // Re-baseline after the Blink change goes in 340 // Re-baseline after the Blink change goes in
337 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, 341 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest,
338 DISABLED_AccessibilityAriaCombobox) { 342 DISABLED_AccessibilityAriaCombobox) {
339 RunTest(FILE_PATH_LITERAL("aria-combobox.html")); 343 RunTest(FILE_PATH_LITERAL("aria-combobox.html"));
340 } 344 }
341 345
342 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaHidden) { 346 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaHidden) {
343 RunTest(FILE_PATH_LITERAL("aria-hidden.html")); 347 RunTest(FILE_PATH_LITERAL("aria-hidden.html"));
344 } 348 }
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after
491 } 495 }
492 496
493 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityCanvas) { 497 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityCanvas) {
494 RunTest(FILE_PATH_LITERAL("canvas.html")); 498 RunTest(FILE_PATH_LITERAL("canvas.html"));
495 } 499 }
496 500
497 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityCaption) { 501 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityCaption) {
498 RunTest(FILE_PATH_LITERAL("caption.html")); 502 RunTest(FILE_PATH_LITERAL("caption.html"));
499 } 503 }
500 504
505 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityCheckBox) {
506 RunTest(FILE_PATH_LITERAL("checkbox.html"));
507 }
508
501 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, 509 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest,
502 AccessibilityCheckboxNameCalc) { 510 AccessibilityCheckboxNameCalc) {
503 RunTest(FILE_PATH_LITERAL("checkbox-name-calc.html")); 511 RunTest(FILE_PATH_LITERAL("checkbox-name-calc.html"));
504 } 512 }
505 513
506 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityCol) { 514 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityCol) {
507 RunTest(FILE_PATH_LITERAL("col.html")); 515 RunTest(FILE_PATH_LITERAL("col.html"));
508 } 516 }
509 517
510 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityDel) { 518 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityDel) {
(...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after
742 750
743 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityUl) { 751 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityUl) {
744 RunTest(FILE_PATH_LITERAL("ul.html")); 752 RunTest(FILE_PATH_LITERAL("ul.html"));
745 } 753 }
746 754
747 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { 755 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) {
748 RunTest(FILE_PATH_LITERAL("wbr.html")); 756 RunTest(FILE_PATH_LITERAL("wbr.html"));
749 } 757 }
750 758
751 } // namespace content 759 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698