| 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 520 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 531 } | 531 } |
| 532 | 532 |
| 533 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAWithImg) { | 533 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAWithImg) { |
| 534 RunTest(FILE_PATH_LITERAL("a-with-img.html")); | 534 RunTest(FILE_PATH_LITERAL("a-with-img.html")); |
| 535 } | 535 } |
| 536 | 536 |
| 537 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityBdo) { | 537 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityBdo) { |
| 538 RunTest(FILE_PATH_LITERAL("bdo.html")); | 538 RunTest(FILE_PATH_LITERAL("bdo.html")); |
| 539 } | 539 } |
| 540 | 540 |
| 541 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityBlockquote) { |
| 542 RunTest(FILE_PATH_LITERAL("blockquote.html")); |
| 543 } |
| 544 |
| 541 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityBody) { | 545 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityBody) { |
| 542 RunTest(FILE_PATH_LITERAL("body.html")); | 546 RunTest(FILE_PATH_LITERAL("body.html")); |
| 543 } | 547 } |
| 544 | 548 |
| 545 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityBR) { | 549 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityBR) { |
| 546 RunTest(FILE_PATH_LITERAL("br.html")); | 550 RunTest(FILE_PATH_LITERAL("br.html")); |
| 547 } | 551 } |
| 548 | 552 |
| 549 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityButton) { | 553 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityButton) { |
| 550 RunTest(FILE_PATH_LITERAL("button.html")); | 554 RunTest(FILE_PATH_LITERAL("button.html")); |
| (...skipping 357 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 908 | 912 |
| 909 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityUl) { | 913 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityUl) { |
| 910 RunTest(FILE_PATH_LITERAL("ul.html")); | 914 RunTest(FILE_PATH_LITERAL("ul.html")); |
| 911 } | 915 } |
| 912 | 916 |
| 913 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { | 917 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { |
| 914 RunTest(FILE_PATH_LITERAL("wbr.html")); | 918 RunTest(FILE_PATH_LITERAL("wbr.html")); |
| 915 } | 919 } |
| 916 | 920 |
| 917 } // namespace content | 921 } // namespace content |
| OLD | NEW |