| 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 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 } | 119 } |
| 120 | 120 |
| 121 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAName) { | 121 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAName) { |
| 122 RunHtmlTest(FILE_PATH_LITERAL("a-name.html")); | 122 RunHtmlTest(FILE_PATH_LITERAL("a-name.html")); |
| 123 } | 123 } |
| 124 | 124 |
| 125 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityANameCalc) { | 125 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityANameCalc) { |
| 126 RunHtmlTest(FILE_PATH_LITERAL("a-name-calc.html")); | 126 RunHtmlTest(FILE_PATH_LITERAL("a-name-calc.html")); |
| 127 } | 127 } |
| 128 | 128 |
| 129 // crrev.com/481753002 will change the alt content used for the name value. | 129 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityANoText) { |
| 130 // Re-baseline after the Blink change goes in | |
| 131 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | |
| 132 DISABLED_AccessibilityANoText) { | |
| 133 RunHtmlTest(FILE_PATH_LITERAL("a-no-text.html")); | 130 RunHtmlTest(FILE_PATH_LITERAL("a-no-text.html")); |
| 134 } | 131 } |
| 135 | 132 |
| 136 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAOnclick) { | 133 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAOnclick) { |
| 137 RunHtmlTest(FILE_PATH_LITERAL("a-onclick.html")); | 134 RunHtmlTest(FILE_PATH_LITERAL("a-onclick.html")); |
| 138 } | 135 } |
| 139 | 136 |
| 140 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 137 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
| 141 AccessibilityAriaActivedescendant) { | 138 AccessibilityAriaActivedescendant) { |
| 142 RunAriaTest(FILE_PATH_LITERAL("aria-activedescendant.html")); | 139 RunAriaTest(FILE_PATH_LITERAL("aria-activedescendant.html")); |
| (...skipping 839 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 982 | 979 |
| 983 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityVar) { | 980 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityVar) { |
| 984 RunHtmlTest(FILE_PATH_LITERAL("var.html")); | 981 RunHtmlTest(FILE_PATH_LITERAL("var.html")); |
| 985 } | 982 } |
| 986 | 983 |
| 987 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { | 984 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { |
| 988 RunHtmlTest(FILE_PATH_LITERAL("wbr.html")); | 985 RunHtmlTest(FILE_PATH_LITERAL("wbr.html")); |
| 989 } | 986 } |
| 990 | 987 |
| 991 } // namespace content | 988 } // namespace content |
| OLD | NEW |