| 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/files/file_util.h" | 10 #include "base/files/file_util.h" |
| (...skipping 1001 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1012 } | 1012 } |
| 1013 | 1013 |
| 1014 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilitySamp) { | 1014 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilitySamp) { |
| 1015 RunTest(FILE_PATH_LITERAL("samp.html")); | 1015 RunTest(FILE_PATH_LITERAL("samp.html")); |
| 1016 } | 1016 } |
| 1017 | 1017 |
| 1018 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilitySection) { | 1018 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilitySection) { |
| 1019 RunTest(FILE_PATH_LITERAL("section.html")); | 1019 RunTest(FILE_PATH_LITERAL("section.html")); |
| 1020 } | 1020 } |
| 1021 | 1021 |
| 1022 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilitySelect) { | 1022 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, |
| 1023 DISABLED_AccessibilitySelect) { |
| 1023 RunTest(FILE_PATH_LITERAL("select.html")); | 1024 RunTest(FILE_PATH_LITERAL("select.html")); |
| 1024 } | 1025 } |
| 1025 | 1026 |
| 1026 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilitySource) { | 1027 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilitySource) { |
| 1027 RunTest(FILE_PATH_LITERAL("source.html")); | 1028 RunTest(FILE_PATH_LITERAL("source.html")); |
| 1028 } | 1029 } |
| 1029 | 1030 |
| 1030 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilitySpan) { | 1031 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilitySpan) { |
| 1031 RunTest(FILE_PATH_LITERAL("span.html")); | 1032 RunTest(FILE_PATH_LITERAL("span.html")); |
| 1032 } | 1033 } |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1087 | 1088 |
| 1088 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityVar) { | 1089 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityVar) { |
| 1089 RunTest(FILE_PATH_LITERAL("var.html")); | 1090 RunTest(FILE_PATH_LITERAL("var.html")); |
| 1090 } | 1091 } |
| 1091 | 1092 |
| 1092 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { | 1093 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { |
| 1093 RunTest(FILE_PATH_LITERAL("wbr.html")); | 1094 RunTest(FILE_PATH_LITERAL("wbr.html")); |
| 1094 } | 1095 } |
| 1095 | 1096 |
| 1096 } // namespace content | 1097 } // namespace content |
| OLD | NEW |