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, | 1022 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilitySelect) { |
1023 DISABLED_AccessibilitySelect) { | |
1024 RunTest(FILE_PATH_LITERAL("select.html")); | 1023 RunTest(FILE_PATH_LITERAL("select.html")); |
1025 } | 1024 } |
1026 | 1025 |
1027 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilitySource) { | 1026 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilitySource) { |
1028 RunTest(FILE_PATH_LITERAL("source.html")); | 1027 RunTest(FILE_PATH_LITERAL("source.html")); |
1029 } | 1028 } |
1030 | 1029 |
1031 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilitySpan) { | 1030 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilitySpan) { |
1032 RunTest(FILE_PATH_LITERAL("span.html")); | 1031 RunTest(FILE_PATH_LITERAL("span.html")); |
1033 } | 1032 } |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1088 | 1087 |
1089 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityVar) { | 1088 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityVar) { |
1090 RunTest(FILE_PATH_LITERAL("var.html")); | 1089 RunTest(FILE_PATH_LITERAL("var.html")); |
1091 } | 1090 } |
1092 | 1091 |
1093 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { | 1092 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { |
1094 RunTest(FILE_PATH_LITERAL("wbr.html")); | 1093 RunTest(FILE_PATH_LITERAL("wbr.html")); |
1095 } | 1094 } |
1096 | 1095 |
1097 } // namespace content | 1096 } // namespace content |
OLD | NEW |