| 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 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 241 } | 241 } |
| 242 | 242 |
| 243 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityCSSFontStyle) { | 243 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityCSSFontStyle) { |
| 244 RunCSSTest(FILE_PATH_LITERAL("font-style.html")); | 244 RunCSSTest(FILE_PATH_LITERAL("font-style.html")); |
| 245 } | 245 } |
| 246 | 246 |
| 247 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityCSSFontFamily) { | 247 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityCSSFontFamily) { |
| 248 RunCSSTest(FILE_PATH_LITERAL("font-family.html")); | 248 RunCSSTest(FILE_PATH_LITERAL("font-family.html")); |
| 249 } | 249 } |
| 250 | 250 |
| 251 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
| 252 AccessibilityCSSInlinePositionRelative) { |
| 253 RunCSSTest(FILE_PATH_LITERAL("inline-position-relative.html")); |
| 254 } |
| 255 |
| 251 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityCSSLanguage) { | 256 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityCSSLanguage) { |
| 252 RunCSSTest(FILE_PATH_LITERAL("language.html")); | 257 RunCSSTest(FILE_PATH_LITERAL("language.html")); |
| 253 } | 258 } |
| 254 | 259 |
| 255 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityA) { | 260 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityA) { |
| 256 RunHtmlTest(FILE_PATH_LITERAL("a.html")); | 261 RunHtmlTest(FILE_PATH_LITERAL("a.html")); |
| 257 } | 262 } |
| 258 | 263 |
| 259 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAbbr) { | 264 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAbbr) { |
| 260 RunHtmlTest(FILE_PATH_LITERAL("abbr.html")); | 265 RunHtmlTest(FILE_PATH_LITERAL("abbr.html")); |
| (...skipping 1324 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1585 // crbug.com/281952 | 1590 // crbug.com/281952 |
| 1586 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityVideo) { | 1591 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityVideo) { |
| 1587 RunHtmlTest(FILE_PATH_LITERAL("video.html")); | 1592 RunHtmlTest(FILE_PATH_LITERAL("video.html")); |
| 1588 } | 1593 } |
| 1589 | 1594 |
| 1590 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { | 1595 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { |
| 1591 RunHtmlTest(FILE_PATH_LITERAL("wbr.html")); | 1596 RunHtmlTest(FILE_PATH_LITERAL("wbr.html")); |
| 1592 } | 1597 } |
| 1593 | 1598 |
| 1594 } // namespace content | 1599 } // namespace content |
| OLD | NEW |