| 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 1007 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1018 } | 1018 } |
| 1019 | 1019 |
| 1020 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityScript) { | 1020 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityScript) { |
| 1021 RunHtmlTest(FILE_PATH_LITERAL("script.html")); | 1021 RunHtmlTest(FILE_PATH_LITERAL("script.html")); |
| 1022 } | 1022 } |
| 1023 | 1023 |
| 1024 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilitySection) { | 1024 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilitySection) { |
| 1025 RunHtmlTest(FILE_PATH_LITERAL("section.html")); | 1025 RunHtmlTest(FILE_PATH_LITERAL("section.html")); |
| 1026 } | 1026 } |
| 1027 | 1027 |
| 1028 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilitySelect) { | 1028 // https://codereview.chromium.org/887643003 will change accessibility role |
| 1029 // in some cases Re-baseline after the Blink change goes in |
| 1030 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
| 1031 DISABLED_AccessibilitySelect) { |
| 1029 RunHtmlTest(FILE_PATH_LITERAL("select.html")); | 1032 RunHtmlTest(FILE_PATH_LITERAL("select.html")); |
| 1030 } | 1033 } |
| 1031 | 1034 |
| 1032 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilitySource) { | 1035 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilitySource) { |
| 1033 RunHtmlTest(FILE_PATH_LITERAL("source.html")); | 1036 RunHtmlTest(FILE_PATH_LITERAL("source.html")); |
| 1034 } | 1037 } |
| 1035 | 1038 |
| 1036 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilitySpan) { | 1039 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilitySpan) { |
| 1037 RunHtmlTest(FILE_PATH_LITERAL("span.html")); | 1040 RunHtmlTest(FILE_PATH_LITERAL("span.html")); |
| 1038 } | 1041 } |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1106 // crbug.com/281952 | 1109 // crbug.com/281952 |
| 1107 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityVideo) { | 1110 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityVideo) { |
| 1108 RunHtmlTest(FILE_PATH_LITERAL("video.html")); | 1111 RunHtmlTest(FILE_PATH_LITERAL("video.html")); |
| 1109 } | 1112 } |
| 1110 | 1113 |
| 1111 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { | 1114 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { |
| 1112 RunHtmlTest(FILE_PATH_LITERAL("wbr.html")); | 1115 RunHtmlTest(FILE_PATH_LITERAL("wbr.html")); |
| 1113 } | 1116 } |
| 1114 | 1117 |
| 1115 } // namespace content | 1118 } // namespace content |
| OLD | NEW |