| 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 387 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 398 | 398 |
| 399 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 399 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
| 400 AccessibilityAriaOrientation) { | 400 AccessibilityAriaOrientation) { |
| 401 RunAriaTest(FILE_PATH_LITERAL("aria-orientation.html")); | 401 RunAriaTest(FILE_PATH_LITERAL("aria-orientation.html")); |
| 402 } | 402 } |
| 403 | 403 |
| 404 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaOwns) { | 404 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaOwns) { |
| 405 RunAriaTest(FILE_PATH_LITERAL("aria-owns.html")); | 405 RunAriaTest(FILE_PATH_LITERAL("aria-owns.html")); |
| 406 } | 406 } |
| 407 | 407 |
| 408 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaOwnsList) { |
| 409 RunAriaTest(FILE_PATH_LITERAL("aria-owns-list.html")); |
| 410 } |
| 411 |
| 408 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaMath) { | 412 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaMath) { |
| 409 RunAriaTest(FILE_PATH_LITERAL("aria-math.html")); | 413 RunAriaTest(FILE_PATH_LITERAL("aria-math.html")); |
| 410 } | 414 } |
| 411 | 415 |
| 412 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaNone) { | 416 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaNone) { |
| 413 RunAriaTest(FILE_PATH_LITERAL("aria-none.html")); | 417 RunAriaTest(FILE_PATH_LITERAL("aria-none.html")); |
| 414 } | 418 } |
| 415 | 419 |
| 416 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaOption) { | 420 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaOption) { |
| 417 RunAriaTest(FILE_PATH_LITERAL("aria-option.html")); | 421 RunAriaTest(FILE_PATH_LITERAL("aria-option.html")); |
| (...skipping 748 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1166 // crbug.com/281952 | 1170 // crbug.com/281952 |
| 1167 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityVideo) { | 1171 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityVideo) { |
| 1168 RunHtmlTest(FILE_PATH_LITERAL("video.html")); | 1172 RunHtmlTest(FILE_PATH_LITERAL("video.html")); |
| 1169 } | 1173 } |
| 1170 | 1174 |
| 1171 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { | 1175 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { |
| 1172 RunHtmlTest(FILE_PATH_LITERAL("wbr.html")); | 1176 RunHtmlTest(FILE_PATH_LITERAL("wbr.html")); |
| 1173 } | 1177 } |
| 1174 | 1178 |
| 1175 } // namespace content | 1179 } // namespace content |
| OLD | NEW |