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