| 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 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 184 } | 184 } |
| 185 | 185 |
| 186 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityANoText) { | 186 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityANoText) { |
| 187 RunHtmlTest(FILE_PATH_LITERAL("a-no-text.html")); | 187 RunHtmlTest(FILE_PATH_LITERAL("a-no-text.html")); |
| 188 } | 188 } |
| 189 | 189 |
| 190 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAOnclick) { | 190 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAOnclick) { |
| 191 RunHtmlTest(FILE_PATH_LITERAL("a-onclick.html")); | 191 RunHtmlTest(FILE_PATH_LITERAL("a-onclick.html")); |
| 192 } | 192 } |
| 193 | 193 |
| 194 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAomChecked) { | 194 |
| 195 #if defined(THREAD_SANITIZER) |
| 196 // See (crbug.com/708759). |
| 197 #define MAYBE_AccessibilityAomChecked DISABLED_AccessibilityAomChecked |
| 198 #else |
| 199 #define MAYBE_AccessibilityAomChecked AccessibilityAomChecked |
| 200 #endif |
| 201 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
| 202 MAYBE_AccessibilityAomChecked) { |
| 195 RunAomTest(FILE_PATH_LITERAL("aom-checked.html")); | 203 RunAomTest(FILE_PATH_LITERAL("aom-checked.html")); |
| 196 } | 204 } |
| 197 | 205 |
| 198 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, | 206 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
| 199 AccessibilityAriaActivedescendant) { | 207 AccessibilityAriaActivedescendant) { |
| 200 RunAriaTest(FILE_PATH_LITERAL("aria-activedescendant.html")); | 208 RunAriaTest(FILE_PATH_LITERAL("aria-activedescendant.html")); |
| 201 } | 209 } |
| 202 | 210 |
| 203 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaAlert) { | 211 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityAriaAlert) { |
| 204 RunAriaTest(FILE_PATH_LITERAL("aria-alert.html")); | 212 RunAriaTest(FILE_PATH_LITERAL("aria-alert.html")); |
| (...skipping 1275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1480 // crbug.com/281952 | 1488 // crbug.com/281952 |
| 1481 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityVideo) { | 1489 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, DISABLED_AccessibilityVideo) { |
| 1482 RunHtmlTest(FILE_PATH_LITERAL("video.html")); | 1490 RunHtmlTest(FILE_PATH_LITERAL("video.html")); |
| 1483 } | 1491 } |
| 1484 | 1492 |
| 1485 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { | 1493 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { |
| 1486 RunHtmlTest(FILE_PATH_LITERAL("wbr.html")); | 1494 RunHtmlTest(FILE_PATH_LITERAL("wbr.html")); |
| 1487 } | 1495 } |
| 1488 | 1496 |
| 1489 } // namespace content | 1497 } // namespace content |
| OLD | NEW |