| 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/files/file_util.h" | 10 #include "base/files/file_util.h" |
| (...skipping 402 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 413 | 413 |
| 414 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaHidden) { | 414 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaHidden) { |
| 415 RunTest(FILE_PATH_LITERAL("aria-hidden.html")); | 415 RunTest(FILE_PATH_LITERAL("aria-hidden.html")); |
| 416 } | 416 } |
| 417 | 417 |
| 418 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 418 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
| 419 MAYBE(AccessibilityAriaFlowto)) { | 419 MAYBE(AccessibilityAriaFlowto)) { |
| 420 RunTest(FILE_PATH_LITERAL("aria-flowto.html")); | 420 RunTest(FILE_PATH_LITERAL("aria-flowto.html")); |
| 421 } | 421 } |
| 422 | 422 |
| 423 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaForm) { |
| 424 RunTest(FILE_PATH_LITERAL("aria-form.html")); |
| 425 } |
| 426 |
| 423 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaImg) { | 427 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaImg) { |
| 424 RunTest(FILE_PATH_LITERAL("aria-img.html")); | 428 RunTest(FILE_PATH_LITERAL("aria-img.html")); |
| 425 } | 429 } |
| 426 | 430 |
| 427 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaInvalid) { | 431 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaInvalid) { |
| 428 RunTest(FILE_PATH_LITERAL("aria-invalid.html")); | 432 RunTest(FILE_PATH_LITERAL("aria-invalid.html")); |
| 429 } | 433 } |
| 430 | 434 |
| 431 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 435 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
| 432 AccessibilityAriaLabelledByHeading) { | 436 AccessibilityAriaLabelledByHeading) { |
| (...skipping 656 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1089 | 1093 |
| 1090 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityVar) { | 1094 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityVar) { |
| 1091 RunTest(FILE_PATH_LITERAL("var.html")); | 1095 RunTest(FILE_PATH_LITERAL("var.html")); |
| 1092 } | 1096 } |
| 1093 | 1097 |
| 1094 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { | 1098 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { |
| 1095 RunTest(FILE_PATH_LITERAL("wbr.html")); | 1099 RunTest(FILE_PATH_LITERAL("wbr.html")); |
| 1096 } | 1100 } |
| 1097 | 1101 |
| 1098 } // namespace content | 1102 } // namespace content |
| OLD | NEW |