| OLD | NEW |
| 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 393 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 404 | 404 |
| 405 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaMarquee) { | 405 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaMarquee) { |
| 406 RunTest(FILE_PATH_LITERAL("aria-marquee.html")); | 406 RunTest(FILE_PATH_LITERAL("aria-marquee.html")); |
| 407 } | 407 } |
| 408 | 408 |
| 409 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaMenu) { | 409 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaMenu) { |
| 410 RunTest(FILE_PATH_LITERAL("aria-menu.html")); | 410 RunTest(FILE_PATH_LITERAL("aria-menu.html")); |
| 411 } | 411 } |
| 412 | 412 |
| 413 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 413 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
| 414 AccessibilityAriaMenuitemcheckbox) { |
| 415 RunTest(FILE_PATH_LITERAL("aria-menuitemcheckbox.html")); |
| 416 } |
| 417 |
| 418 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
| 414 AccessibilityAriaMenuitemradio) { | 419 AccessibilityAriaMenuitemradio) { |
| 415 RunTest(FILE_PATH_LITERAL("aria-menuitemradio.html")); | 420 RunTest(FILE_PATH_LITERAL("aria-menuitemradio.html")); |
| 416 } | 421 } |
| 417 | 422 |
| 418 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaNavigation) { | 423 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaNavigation) { |
| 419 RunTest(FILE_PATH_LITERAL("aria-navigation.html")); | 424 RunTest(FILE_PATH_LITERAL("aria-navigation.html")); |
| 420 } | 425 } |
| 421 | 426 |
| 422 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 427 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
| 423 AccessibilityAriaOrientation) { | 428 AccessibilityAriaOrientation) { |
| (...skipping 364 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 788 | 793 |
| 789 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityUl) { | 794 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityUl) { |
| 790 RunTest(FILE_PATH_LITERAL("ul.html")); | 795 RunTest(FILE_PATH_LITERAL("ul.html")); |
| 791 } | 796 } |
| 792 | 797 |
| 793 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { | 798 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { |
| 794 RunTest(FILE_PATH_LITERAL("wbr.html")); | 799 RunTest(FILE_PATH_LITERAL("wbr.html")); |
| 795 } | 800 } |
| 796 | 801 |
| 797 } // namespace content | 802 } // namespace content |
| OLD | NEW |