| 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 542 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 553 } | 553 } |
| 554 | 554 |
| 555 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityDl) { | 555 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityDl) { |
| 556 RunHtmlTest(FILE_PATH_LITERAL("dl.html")); | 556 RunHtmlTest(FILE_PATH_LITERAL("dl.html")); |
| 557 } | 557 } |
| 558 | 558 |
| 559 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityDt) { | 559 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityDt) { |
| 560 RunHtmlTest(FILE_PATH_LITERAL("dt.html")); | 560 RunHtmlTest(FILE_PATH_LITERAL("dt.html")); |
| 561 } | 561 } |
| 562 | 562 |
| 563 #if defined(OS_ANDROID) | |
| 564 // Flaky on Nexus 7 bot, http://crbug.com/445929. | |
| 565 #define MAYBE_AccessibilityContenteditableDescendants \ | |
| 566 DISABLED_AccessibilityContenteditableDescendants | |
| 567 #else | |
| 568 #define MAYBE_AccessibilityContenteditableDescendants \ | |
| 569 AccessibilityContenteditableDescendants | |
| 570 #endif | |
| 571 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 563 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
| 572 MAYBE_AccessibilityContenteditableDescendants) { | 564 AccessibilityContenteditableDescendants) { |
| 573 RunHtmlTest(FILE_PATH_LITERAL("contenteditable-descendants.html")); | 565 RunHtmlTest(FILE_PATH_LITERAL("contenteditable-descendants.html")); |
| 574 } | 566 } |
| 575 | 567 |
| 576 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityEm) { | 568 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityEm) { |
| 577 RunHtmlTest(FILE_PATH_LITERAL("em.html")); | 569 RunHtmlTest(FILE_PATH_LITERAL("em.html")); |
| 578 } | 570 } |
| 579 | 571 |
| 580 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityEmbed) { | 572 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityEmbed) { |
| 581 RunHtmlTest(FILE_PATH_LITERAL("embed.html")); | 573 RunHtmlTest(FILE_PATH_LITERAL("embed.html")); |
| 582 } | 574 } |
| (...skipping 401 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 984 | 976 |
| 985 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityVar) { | 977 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityVar) { |
| 986 RunHtmlTest(FILE_PATH_LITERAL("var.html")); | 978 RunHtmlTest(FILE_PATH_LITERAL("var.html")); |
| 987 } | 979 } |
| 988 | 980 |
| 989 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { | 981 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { |
| 990 RunHtmlTest(FILE_PATH_LITERAL("wbr.html")); | 982 RunHtmlTest(FILE_PATH_LITERAL("wbr.html")); |
| 991 } | 983 } |
| 992 | 984 |
| 993 } // namespace content | 985 } // namespace content |
| OLD | NEW |