| 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 780 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 791 #define MAYBE_AccessibilityContenteditableWithEmbeddedContenteditables \ | 791 #define MAYBE_AccessibilityContenteditableWithEmbeddedContenteditables \ |
| 792 AccessibilityContenteditableWithEmbeddedContenteditables | 792 AccessibilityContenteditableWithEmbeddedContenteditables |
| 793 #endif | 793 #endif |
| 794 IN_PROC_BROWSER_TEST_F( | 794 IN_PROC_BROWSER_TEST_F( |
| 795 DumpAccessibilityTreeTest, | 795 DumpAccessibilityTreeTest, |
| 796 MAYBE_AccessibilityContenteditableWithEmbeddedContenteditables) { | 796 MAYBE_AccessibilityContenteditableWithEmbeddedContenteditables) { |
| 797 RunHtmlTest( | 797 RunHtmlTest( |
| 798 FILE_PATH_LITERAL("contenteditable-with-embedded-contenteditables.html")); | 798 FILE_PATH_LITERAL("contenteditable-with-embedded-contenteditables.html")); |
| 799 } | 799 } |
| 800 | 800 |
| 801 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
| 802 AccessibilityContenteditableWithNoDescendants) { |
| 803 RunHtmlTest(FILE_PATH_LITERAL("contenteditable-with-no-descendants.html")); |
| 804 } |
| 805 |
| 801 #if defined(OS_ANDROID) | 806 #if defined(OS_ANDROID) |
| 802 // Flaky failures: http://crbug.com/515053. | 807 // Flaky failures: http://crbug.com/515053. |
| 803 #define MAYBE_AccessibilityEm DISABLED_AccessibilityEm | 808 #define MAYBE_AccessibilityEm DISABLED_AccessibilityEm |
| 804 #else | 809 #else |
| 805 #define MAYBE_AccessibilityEm AccessibilityEm | 810 #define MAYBE_AccessibilityEm AccessibilityEm |
| 806 #endif | 811 #endif |
| 807 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, MAYBE_AccessibilityEm) { | 812 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, MAYBE_AccessibilityEm) { |
| 808 RunHtmlTest(FILE_PATH_LITERAL("em.html")); | 813 RunHtmlTest(FILE_PATH_LITERAL("em.html")); |
| 809 } | 814 } |
| 810 | 815 |
| (...skipping 534 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1345 // crbug.com/281952 | 1350 // crbug.com/281952 |
| 1346 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityVideo) { | 1351 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityVideo) { |
| 1347 RunHtmlTest(FILE_PATH_LITERAL("video.html")); | 1352 RunHtmlTest(FILE_PATH_LITERAL("video.html")); |
| 1348 } | 1353 } |
| 1349 | 1354 |
| 1350 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { | 1355 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { |
| 1351 RunHtmlTest(FILE_PATH_LITERAL("wbr.html")); | 1356 RunHtmlTest(FILE_PATH_LITERAL("wbr.html")); |
| 1352 } | 1357 } |
| 1353 | 1358 |
| 1354 } // namespace content | 1359 } // namespace content |
| OLD | NEW |