| 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 469 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 480 | 480 |
| 481 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 481 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
| 482 AccessibilityContenteditableDescendants) { | 482 AccessibilityContenteditableDescendants) { |
| 483 RunTest(FILE_PATH_LITERAL("contenteditable-descendants.html")); | 483 RunTest(FILE_PATH_LITERAL("contenteditable-descendants.html")); |
| 484 } | 484 } |
| 485 | 485 |
| 486 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityEm) { | 486 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityEm) { |
| 487 RunTest(FILE_PATH_LITERAL("em.html")); | 487 RunTest(FILE_PATH_LITERAL("em.html")); |
| 488 } | 488 } |
| 489 | 489 |
| 490 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityFigcaption) { |
| 491 RunTest(FILE_PATH_LITERAL("figcaption.html")); |
| 492 } |
| 493 |
| 490 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityFooter) { | 494 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityFooter) { |
| 491 RunTest(FILE_PATH_LITERAL("footer.html")); | 495 RunTest(FILE_PATH_LITERAL("footer.html")); |
| 492 } | 496 } |
| 493 | 497 |
| 494 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityForm) { | 498 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityForm) { |
| 495 RunTest(FILE_PATH_LITERAL("form.html")); | 499 RunTest(FILE_PATH_LITERAL("form.html")); |
| 496 } | 500 } |
| 497 | 501 |
| 498 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityHeading) { | 502 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityHeading) { |
| 499 RunTest(FILE_PATH_LITERAL("heading.html")); | 503 RunTest(FILE_PATH_LITERAL("heading.html")); |
| (...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 645 | 649 |
| 646 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityUl) { | 650 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityUl) { |
| 647 RunTest(FILE_PATH_LITERAL("ul.html")); | 651 RunTest(FILE_PATH_LITERAL("ul.html")); |
| 648 } | 652 } |
| 649 | 653 |
| 650 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { | 654 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { |
| 651 RunTest(FILE_PATH_LITERAL("wbr.html")); | 655 RunTest(FILE_PATH_LITERAL("wbr.html")); |
| 652 } | 656 } |
| 653 | 657 |
| 654 } // namespace content | 658 } // namespace content |
| OLD | NEW |