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 701 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
712 DISABLED_AccessibilityContenteditableDescendants | 712 DISABLED_AccessibilityContenteditableDescendants |
713 #else | 713 #else |
714 #define MAYBE_AccessibilityContenteditableDescendants \ | 714 #define MAYBE_AccessibilityContenteditableDescendants \ |
715 AccessibilityContenteditableDescendants | 715 AccessibilityContenteditableDescendants |
716 #endif | 716 #endif |
717 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 717 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
718 MAYBE_AccessibilityContenteditableDescendants) { | 718 MAYBE_AccessibilityContenteditableDescendants) { |
719 RunHtmlTest(FILE_PATH_LITERAL("contenteditable-descendants.html")); | 719 RunHtmlTest(FILE_PATH_LITERAL("contenteditable-descendants.html")); |
720 } | 720 } |
721 | 721 |
| 722 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
| 723 AccessibilityElementClassIdSrcAttr) { |
| 724 RunHtmlTest(FILE_PATH_LITERAL("element-class-id-src-attr.html")); |
| 725 } |
| 726 |
722 #if defined(OS_ANDROID) | 727 #if defined(OS_ANDROID) |
723 // Flaky failures: http://crbug.com/515053. | 728 // Flaky failures: http://crbug.com/515053. |
724 #define MAYBE_AccessibilityEm DISABLED_AccessibilityEm | 729 #define MAYBE_AccessibilityEm DISABLED_AccessibilityEm |
725 #else | 730 #else |
726 #define MAYBE_AccessibilityEm AccessibilityEm | 731 #define MAYBE_AccessibilityEm AccessibilityEm |
727 #endif | 732 #endif |
728 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, MAYBE_AccessibilityEm) { | 733 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, MAYBE_AccessibilityEm) { |
729 RunHtmlTest(FILE_PATH_LITERAL("em.html")); | 734 RunHtmlTest(FILE_PATH_LITERAL("em.html")); |
730 } | 735 } |
731 | 736 |
(...skipping 479 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1211 // crbug.com/281952 | 1216 // crbug.com/281952 |
1212 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityVideo) { | 1217 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityVideo) { |
1213 RunHtmlTest(FILE_PATH_LITERAL("video.html")); | 1218 RunHtmlTest(FILE_PATH_LITERAL("video.html")); |
1214 } | 1219 } |
1215 | 1220 |
1216 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { | 1221 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { |
1217 RunHtmlTest(FILE_PATH_LITERAL("wbr.html")); | 1222 RunHtmlTest(FILE_PATH_LITERAL("wbr.html")); |
1218 } | 1223 } |
1219 | 1224 |
1220 } // namespace content | 1225 } // namespace content |
OLD | NEW |