| 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 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 121 }; | 121 }; |
| 122 | 122 |
| 123 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityCSSColor) { | 123 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityCSSColor) { |
| 124 RunCSSTest(FILE_PATH_LITERAL("color.html")); | 124 RunCSSTest(FILE_PATH_LITERAL("color.html")); |
| 125 } | 125 } |
| 126 | 126 |
| 127 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityCSSFontStyle) { | 127 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityCSSFontStyle) { |
| 128 RunCSSTest(FILE_PATH_LITERAL("font-style.html")); | 128 RunCSSTest(FILE_PATH_LITERAL("font-style.html")); |
| 129 } | 129 } |
| 130 | 130 |
| 131 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityCSSFontFamily) { |
| 132 RunCSSTest(FILE_PATH_LITERAL("font-family.html")); |
| 133 } |
| 134 |
| 131 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityCSSLanguage) { | 135 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityCSSLanguage) { |
| 132 RunCSSTest(FILE_PATH_LITERAL("language.html")); | 136 RunCSSTest(FILE_PATH_LITERAL("language.html")); |
| 133 } | 137 } |
| 134 | 138 |
| 135 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityA) { | 139 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityA) { |
| 136 RunHtmlTest(FILE_PATH_LITERAL("a.html")); | 140 RunHtmlTest(FILE_PATH_LITERAL("a.html")); |
| 137 } | 141 } |
| 138 | 142 |
| 139 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAbbr) { | 143 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAbbr) { |
| 140 RunHtmlTest(FILE_PATH_LITERAL("abbr.html")); | 144 RunHtmlTest(FILE_PATH_LITERAL("abbr.html")); |
| (...skipping 1233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1374 // crbug.com/281952 | 1378 // crbug.com/281952 |
| 1375 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityVideo) { | 1379 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityVideo) { |
| 1376 RunHtmlTest(FILE_PATH_LITERAL("video.html")); | 1380 RunHtmlTest(FILE_PATH_LITERAL("video.html")); |
| 1377 } | 1381 } |
| 1378 | 1382 |
| 1379 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { | 1383 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { |
| 1380 RunHtmlTest(FILE_PATH_LITERAL("wbr.html")); | 1384 RunHtmlTest(FILE_PATH_LITERAL("wbr.html")); |
| 1381 } | 1385 } |
| 1382 | 1386 |
| 1383 } // namespace content | 1387 } // namespace content |
| OLD | NEW |