| 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 305 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 316 | 316 |
| 317 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaAlert) { | 317 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaAlert) { |
| 318 RunTest(FILE_PATH_LITERAL("aria-alert.html")); | 318 RunTest(FILE_PATH_LITERAL("aria-alert.html")); |
| 319 } | 319 } |
| 320 | 320 |
| 321 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 321 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
| 322 AccessibilityAriaApplication) { | 322 AccessibilityAriaApplication) { |
| 323 RunTest(FILE_PATH_LITERAL("aria-application.html")); | 323 RunTest(FILE_PATH_LITERAL("aria-application.html")); |
| 324 } | 324 } |
| 325 | 325 |
| 326 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaArticle) { |
| 327 RunTest(FILE_PATH_LITERAL("aria-article.html")); |
| 328 } |
| 329 |
| 326 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaAtomic) { | 330 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaAtomic) { |
| 327 RunTest(FILE_PATH_LITERAL("aria-atomic.html")); | 331 RunTest(FILE_PATH_LITERAL("aria-atomic.html")); |
| 328 } | 332 } |
| 329 | 333 |
| 330 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 334 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
| 331 AccessibilityAriaAutocomplete) { | 335 AccessibilityAriaAutocomplete) { |
| 332 RunTest(FILE_PATH_LITERAL("aria-autocomplete.html")); | 336 RunTest(FILE_PATH_LITERAL("aria-autocomplete.html")); |
| 333 } | 337 } |
| 334 | 338 |
| 335 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaBanner) { | 339 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaBanner) { |
| (...skipping 572 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 908 | 912 |
| 909 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityUl) { | 913 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityUl) { |
| 910 RunTest(FILE_PATH_LITERAL("ul.html")); | 914 RunTest(FILE_PATH_LITERAL("ul.html")); |
| 911 } | 915 } |
| 912 | 916 |
| 913 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { | 917 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { |
| 914 RunTest(FILE_PATH_LITERAL("wbr.html")); | 918 RunTest(FILE_PATH_LITERAL("wbr.html")); |
| 915 } | 919 } |
| 916 | 920 |
| 917 } // namespace content | 921 } // namespace content |
| OLD | NEW |