| 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 668 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 679 | 679 |
| 680 #if defined(OS_ANDROID) | 680 #if defined(OS_ANDROID) |
| 681 // Flaky failures: http://crbug.com/445929. | 681 // Flaky failures: http://crbug.com/445929. |
| 682 #define MAYBE_AccessibilityContenteditableDescendants \ | 682 #define MAYBE_AccessibilityContenteditableDescendants \ |
| 683 DISABLED_AccessibilityContenteditableDescendants | 683 DISABLED_AccessibilityContenteditableDescendants |
| 684 #else | 684 #else |
| 685 #define MAYBE_AccessibilityContenteditableDescendants \ | 685 #define MAYBE_AccessibilityContenteditableDescendants \ |
| 686 AccessibilityContenteditableDescendants | 686 AccessibilityContenteditableDescendants |
| 687 #endif | 687 #endif |
| 688 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 688 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
| 689 MAYBE_AccessibilityContenteditableDescendants) { | 689 DISABLED_AccessibilityContenteditableDescendants) { |
| 690 RunHtmlTest(FILE_PATH_LITERAL("contenteditable-descendants.html")); | 690 RunHtmlTest(FILE_PATH_LITERAL("contenteditable-descendants.html")); |
| 691 } | 691 } |
| 692 | 692 |
| 693 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityEm) { | 693 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityEm) { |
| 694 RunHtmlTest(FILE_PATH_LITERAL("em.html")); | 694 RunHtmlTest(FILE_PATH_LITERAL("em.html")); |
| 695 } | 695 } |
| 696 | 696 |
| 697 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityEmbed) { | 697 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityEmbed) { |
| 698 RunHtmlTest(FILE_PATH_LITERAL("embed.html")); | 698 RunHtmlTest(FILE_PATH_LITERAL("embed.html")); |
| 699 } | 699 } |
| (...skipping 456 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1156 // crbug.com/281952 | 1156 // crbug.com/281952 |
| 1157 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityVideo) { | 1157 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityVideo) { |
| 1158 RunHtmlTest(FILE_PATH_LITERAL("video.html")); | 1158 RunHtmlTest(FILE_PATH_LITERAL("video.html")); |
| 1159 } | 1159 } |
| 1160 | 1160 |
| 1161 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { | 1161 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { |
| 1162 RunHtmlTest(FILE_PATH_LITERAL("wbr.html")); | 1162 RunHtmlTest(FILE_PATH_LITERAL("wbr.html")); |
| 1163 } | 1163 } |
| 1164 | 1164 |
| 1165 } // namespace content | 1165 } // namespace content |
| OLD | NEW |