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 454 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
465 | 465 |
466 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 466 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
467 AccessibilityAriaListBoxChildFocus) { | 467 AccessibilityAriaListBoxChildFocus) { |
468 RunTest(FILE_PATH_LITERAL("aria-listbox-childfocus.html")); | 468 RunTest(FILE_PATH_LITERAL("aria-listbox-childfocus.html")); |
469 } | 469 } |
470 | 470 |
471 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaLive) { | 471 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaLive) { |
472 RunTest(FILE_PATH_LITERAL("aria-live.html")); | 472 RunTest(FILE_PATH_LITERAL("aria-live.html")); |
473 } | 473 } |
474 | 474 |
| 475 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
| 476 AccessibilityAriaLiveWithContent) { |
| 477 RunTest(FILE_PATH_LITERAL("aria-live-with-content.html")); |
| 478 } |
| 479 |
475 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaLog) { | 480 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaLog) { |
476 RunTest(FILE_PATH_LITERAL("aria-log.html")); | 481 RunTest(FILE_PATH_LITERAL("aria-log.html")); |
477 } | 482 } |
478 | 483 |
479 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaMarquee) { | 484 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaMarquee) { |
480 RunTest(FILE_PATH_LITERAL("aria-marquee.html")); | 485 RunTest(FILE_PATH_LITERAL("aria-marquee.html")); |
481 } | 486 } |
482 | 487 |
483 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaMenu) { | 488 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaMenu) { |
484 RunTest(FILE_PATH_LITERAL("aria-menu.html")); | 489 RunTest(FILE_PATH_LITERAL("aria-menu.html")); |
(...skipping 628 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1113 | 1118 |
1114 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityVar) { | 1119 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityVar) { |
1115 RunTest(FILE_PATH_LITERAL("var.html")); | 1120 RunTest(FILE_PATH_LITERAL("var.html")); |
1116 } | 1121 } |
1117 | 1122 |
1118 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { | 1123 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { |
1119 RunTest(FILE_PATH_LITERAL("wbr.html")); | 1124 RunTest(FILE_PATH_LITERAL("wbr.html")); |
1120 } | 1125 } |
1121 | 1126 |
1122 } // namespace content | 1127 } // namespace content |
OLD | NEW |