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/path_service.h" | 10 #include "base/path_service.h" |
(...skipping 579 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
590 } | 590 } |
591 | 591 |
592 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityBlockquote) { | 592 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityBlockquote) { |
593 RunHtmlTest(FILE_PATH_LITERAL("blockquote.html")); | 593 RunHtmlTest(FILE_PATH_LITERAL("blockquote.html")); |
594 } | 594 } |
595 | 595 |
596 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityBody) { | 596 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityBody) { |
597 RunHtmlTest(FILE_PATH_LITERAL("body.html")); | 597 RunHtmlTest(FILE_PATH_LITERAL("body.html")); |
598 } | 598 } |
599 | 599 |
600 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityBR) { | 600 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityBR) { |
601 RunHtmlTest(FILE_PATH_LITERAL("br.html")); | 601 RunHtmlTest(FILE_PATH_LITERAL("br.html")); |
602 } | 602 } |
603 | 603 |
604 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityButton) { | 604 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityButton) { |
605 RunHtmlTest(FILE_PATH_LITERAL("button.html")); | 605 RunHtmlTest(FILE_PATH_LITERAL("button.html")); |
606 } | 606 } |
607 | 607 |
608 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityButtonNameCalc) { | 608 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityButtonNameCalc) { |
609 RunHtmlTest(FILE_PATH_LITERAL("button-name-calc.html")); | 609 RunHtmlTest(FILE_PATH_LITERAL("button-name-calc.html")); |
610 } | 610 } |
(...skipping 538 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1149 // crbug.com/281952 | 1149 // crbug.com/281952 |
1150 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityVideo) { | 1150 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityVideo) { |
1151 RunHtmlTest(FILE_PATH_LITERAL("video.html")); | 1151 RunHtmlTest(FILE_PATH_LITERAL("video.html")); |
1152 } | 1152 } |
1153 | 1153 |
1154 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { | 1154 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { |
1155 RunHtmlTest(FILE_PATH_LITERAL("wbr.html")); | 1155 RunHtmlTest(FILE_PATH_LITERAL("wbr.html")); |
1156 } | 1156 } |
1157 | 1157 |
1158 } // namespace content | 1158 } // namespace content |
OLD | NEW |