| 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 555 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 566 | 566 |
| 567 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityI) { | 567 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityI) { |
| 568 RunTest(FILE_PATH_LITERAL("i.html")); | 568 RunTest(FILE_PATH_LITERAL("i.html")); |
| 569 } | 569 } |
| 570 | 570 |
| 571 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 571 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
| 572 AccessibilityIframeCoordinates) { | 572 AccessibilityIframeCoordinates) { |
| 573 RunTest(FILE_PATH_LITERAL("iframe-coordinates.html")); | 573 RunTest(FILE_PATH_LITERAL("iframe-coordinates.html")); |
| 574 } | 574 } |
| 575 | 575 |
| 576 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityImg) { |
| 577 RunTest(FILE_PATH_LITERAL("img.html")); |
| 578 } |
| 579 |
| 576 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputButton) { | 580 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputButton) { |
| 577 RunTest(FILE_PATH_LITERAL("input-button.html")); | 581 RunTest(FILE_PATH_LITERAL("input-button.html")); |
| 578 } | 582 } |
| 579 | 583 |
| 580 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 584 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
| 581 AccessibilityInputButtonInMenu) { | 585 AccessibilityInputButtonInMenu) { |
| 582 RunTest(FILE_PATH_LITERAL("input-button-in-menu.html")); | 586 RunTest(FILE_PATH_LITERAL("input-button-in-menu.html")); |
| 583 } | 587 } |
| 584 | 588 |
| 585 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputColor) { | 589 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityInputColor) { |
| (...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 742 | 746 |
| 743 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityUl) { | 747 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityUl) { |
| 744 RunTest(FILE_PATH_LITERAL("ul.html")); | 748 RunTest(FILE_PATH_LITERAL("ul.html")); |
| 745 } | 749 } |
| 746 | 750 |
| 747 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { | 751 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { |
| 748 RunTest(FILE_PATH_LITERAL("wbr.html")); | 752 RunTest(FILE_PATH_LITERAL("wbr.html")); |
| 749 } | 753 } |
| 750 | 754 |
| 751 } // namespace content | 755 } // namespace content |
| OLD | NEW |