| 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 565 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 576 | 576 |
| 577 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaTabPanel) { | 577 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaTabPanel) { |
| 578 RunAriaTest(FILE_PATH_LITERAL("aria-tabpanel.html")); | 578 RunAriaTest(FILE_PATH_LITERAL("aria-tabpanel.html")); |
| 579 } | 579 } |
| 580 | 580 |
| 581 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaTextbox) { | 581 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaTextbox) { |
| 582 RunAriaTest(FILE_PATH_LITERAL("aria-textbox.html")); | 582 RunAriaTest(FILE_PATH_LITERAL("aria-textbox.html")); |
| 583 } | 583 } |
| 584 | 584 |
| 585 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 585 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
| 586 AccessibilityAriaTextboxWithSelection) { | 586 AccessibilityAriaTextboxWithRichText) { |
| 587 RunAriaTest(FILE_PATH_LITERAL("aria-textbox-with-rich-text.html")); |
| 588 } |
| 589 |
| 590 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
| 591 AccessibilityAriaTextboxWithSelection) { |
| 587 RunAriaTest(FILE_PATH_LITERAL("aria-textbox-with-selection.html")); | 592 RunAriaTest(FILE_PATH_LITERAL("aria-textbox-with-selection.html")); |
| 588 } | 593 } |
| 589 | 594 |
| 590 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaTimer) { | 595 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaTimer) { |
| 591 RunAriaTest(FILE_PATH_LITERAL("aria-timer.html")); | 596 RunAriaTest(FILE_PATH_LITERAL("aria-timer.html")); |
| 592 } | 597 } |
| 593 | 598 |
| 594 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 599 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
| 595 AccessibilityAriaToggleButton) { | 600 AccessibilityAriaToggleButton) { |
| 596 RunAriaTest(FILE_PATH_LITERAL("aria-togglebutton.html")); | 601 RunAriaTest(FILE_PATH_LITERAL("aria-togglebutton.html")); |
| (...skipping 715 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1312 // crbug.com/281952 | 1317 // crbug.com/281952 |
| 1313 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityVideo) { | 1318 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityVideo) { |
| 1314 RunHtmlTest(FILE_PATH_LITERAL("video.html")); | 1319 RunHtmlTest(FILE_PATH_LITERAL("video.html")); |
| 1315 } | 1320 } |
| 1316 | 1321 |
| 1317 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { | 1322 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { |
| 1318 RunHtmlTest(FILE_PATH_LITERAL("wbr.html")); | 1323 RunHtmlTest(FILE_PATH_LITERAL("wbr.html")); |
| 1319 } | 1324 } |
| 1320 | 1325 |
| 1321 } // namespace content | 1326 } // namespace content |
| OLD | NEW |