| 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 493 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 504 } | 504 } |
| 505 | 505 |
| 506 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityCol) { | 506 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityCol) { |
| 507 RunTest(FILE_PATH_LITERAL("col.html")); | 507 RunTest(FILE_PATH_LITERAL("col.html")); |
| 508 } | 508 } |
| 509 | 509 |
| 510 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityDel) { | 510 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityDel) { |
| 511 RunTest(FILE_PATH_LITERAL("del.html")); | 511 RunTest(FILE_PATH_LITERAL("del.html")); |
| 512 } | 512 } |
| 513 | 513 |
| 514 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityDetails) { |
| 515 RunTest(FILE_PATH_LITERAL("details.html")); |
| 516 } |
| 517 |
| 514 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityDfn) { | 518 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityDfn) { |
| 515 RunTest(FILE_PATH_LITERAL("dfn.html")); | 519 RunTest(FILE_PATH_LITERAL("dfn.html")); |
| 516 } | 520 } |
| 517 | 521 |
| 518 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityDialog) { | 522 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityDialog) { |
| 519 RunTest(FILE_PATH_LITERAL("dialog.html")); | 523 RunTest(FILE_PATH_LITERAL("dialog.html")); |
| 520 } | 524 } |
| 521 | 525 |
| 522 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityDiv) { | 526 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityDiv) { |
| 523 RunTest(FILE_PATH_LITERAL("div.html")); | 527 RunTest(FILE_PATH_LITERAL("div.html")); |
| (...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 746 | 750 |
| 747 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityUl) { | 751 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityUl) { |
| 748 RunTest(FILE_PATH_LITERAL("ul.html")); | 752 RunTest(FILE_PATH_LITERAL("ul.html")); |
| 749 } | 753 } |
| 750 | 754 |
| 751 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { | 755 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { |
| 752 RunTest(FILE_PATH_LITERAL("wbr.html")); | 756 RunTest(FILE_PATH_LITERAL("wbr.html")); |
| 753 } | 757 } |
| 754 | 758 |
| 755 } // namespace content | 759 } // namespace content |
| OLD | NEW |