| 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/file_util.h" | 10 #include "base/file_util.h" |
| (...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 290 | 290 |
| 291 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 291 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
| 292 AccessibilityAriaLabelledByHeading) { | 292 AccessibilityAriaLabelledByHeading) { |
| 293 RunTest(FILE_PATH_LITERAL("aria-labelledby-heading.html")); | 293 RunTest(FILE_PATH_LITERAL("aria-labelledby-heading.html")); |
| 294 } | 294 } |
| 295 | 295 |
| 296 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaLevel) { | 296 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaLevel) { |
| 297 RunTest(FILE_PATH_LITERAL("aria-level.html")); | 297 RunTest(FILE_PATH_LITERAL("aria-level.html")); |
| 298 } | 298 } |
| 299 | 299 |
| 300 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaList) { |
| 301 RunTest(FILE_PATH_LITERAL("aria-list.html")); |
| 302 } |
| 303 |
| 300 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaMenu) { | 304 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaMenu) { |
| 301 RunTest(FILE_PATH_LITERAL("aria-menu.html")); | 305 RunTest(FILE_PATH_LITERAL("aria-menu.html")); |
| 302 } | 306 } |
| 303 | 307 |
| 304 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 308 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
| 305 AccessibilityAriaMenuitemradio) { | 309 AccessibilityAriaMenuitemradio) { |
| 306 RunTest(FILE_PATH_LITERAL("aria-menuitemradio.html")); | 310 RunTest(FILE_PATH_LITERAL("aria-menuitemradio.html")); |
| 307 } | 311 } |
| 308 | 312 |
| 309 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 313 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
| (...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 523 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { | 527 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { |
| 524 RunTest(FILE_PATH_LITERAL("wbr.html")); | 528 RunTest(FILE_PATH_LITERAL("wbr.html")); |
| 525 } | 529 } |
| 526 | 530 |
| 527 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 531 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
| 528 AccessibilityAriaActivedescendant) { | 532 AccessibilityAriaActivedescendant) { |
| 529 RunTest(FILE_PATH_LITERAL("aria-activedescendant.html")); | 533 RunTest(FILE_PATH_LITERAL("aria-activedescendant.html")); |
| 530 } | 534 } |
| 531 | 535 |
| 532 } // namespace content | 536 } // namespace content |
| OLD | NEW |