| 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/445929. | 728 // Flaky failures: http://crbug.com/445929. |
| 724 #define MAYBE_AccessibilityContenteditableDescendantsWithSelection \ | 729 #define MAYBE_AccessibilityContenteditableDescendantsWithSelection \ |
| 725 DISABLED_AccessibilityContenteditableDescendantsWithSelection | 730 DISABLED_AccessibilityContenteditableDescendantsWithSelection |
| 726 #else | 731 #else |
| 727 #define MAYBE_AccessibilityContenteditableDescendantsWithSelection \ | 732 #define MAYBE_AccessibilityContenteditableDescendantsWithSelection \ |
| 728 AccessibilityContenteditableDescendantsWithSelection | 733 AccessibilityContenteditableDescendantsWithSelection |
| 729 #endif | 734 #endif |
| 730 IN_PROC_BROWSER_TEST_F( | 735 IN_PROC_BROWSER_TEST_F( |
| 731 DumpAccessibilityTreeTest, | 736 DumpAccessibilityTreeTest, |
| (...skipping 494 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1226 // crbug.com/281952 | 1231 // crbug.com/281952 |
| 1227 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityVideo) { | 1232 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityVideo) { |
| 1228 RunHtmlTest(FILE_PATH_LITERAL("video.html")); | 1233 RunHtmlTest(FILE_PATH_LITERAL("video.html")); |
| 1229 } | 1234 } |
| 1230 | 1235 |
| 1231 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { | 1236 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { |
| 1232 RunHtmlTest(FILE_PATH_LITERAL("wbr.html")); | 1237 RunHtmlTest(FILE_PATH_LITERAL("wbr.html")); |
| 1233 } | 1238 } |
| 1234 | 1239 |
| 1235 } // namespace content | 1240 } // namespace content |
| OLD | NEW |