| 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 989 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1000 } | 1000 } |
| 1001 | 1001 |
| 1002 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityProgress) { | 1002 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityProgress) { |
| 1003 RunTest(FILE_PATH_LITERAL("progress.html")); | 1003 RunTest(FILE_PATH_LITERAL("progress.html")); |
| 1004 } | 1004 } |
| 1005 | 1005 |
| 1006 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityQ) { | 1006 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityQ) { |
| 1007 RunTest(FILE_PATH_LITERAL("q.html")); | 1007 RunTest(FILE_PATH_LITERAL("q.html")); |
| 1008 } | 1008 } |
| 1009 | 1009 |
| 1010 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityRuby) { |
| 1011 RunTest(FILE_PATH_LITERAL("ruby.html")); |
| 1012 } |
| 1013 |
| 1010 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityS) { | 1014 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityS) { |
| 1011 RunTest(FILE_PATH_LITERAL("s.html")); | 1015 RunTest(FILE_PATH_LITERAL("s.html")); |
| 1012 } | 1016 } |
| 1013 | 1017 |
| 1014 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilitySamp) { | 1018 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilitySamp) { |
| 1015 RunTest(FILE_PATH_LITERAL("samp.html")); | 1019 RunTest(FILE_PATH_LITERAL("samp.html")); |
| 1016 } | 1020 } |
| 1017 | 1021 |
| 1018 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilitySection) { | 1022 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilitySection) { |
| 1019 RunTest(FILE_PATH_LITERAL("section.html")); | 1023 RunTest(FILE_PATH_LITERAL("section.html")); |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1089 | 1093 |
| 1090 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityVar) { | 1094 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityVar) { |
| 1091 RunTest(FILE_PATH_LITERAL("var.html")); | 1095 RunTest(FILE_PATH_LITERAL("var.html")); |
| 1092 } | 1096 } |
| 1093 | 1097 |
| 1094 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { | 1098 IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityWbr) { |
| 1095 RunTest(FILE_PATH_LITERAL("wbr.html")); | 1099 RunTest(FILE_PATH_LITERAL("wbr.html")); |
| 1096 } | 1100 } |
| 1097 | 1101 |
| 1098 } // namespace content | 1102 } // namespace content |
| OLD | NEW |