OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2013 The Chromium Authors. All rights reserved. | 2 * Copyright 2013 The Chromium Authors. All rights reserved. |
3 * Use of this source code is governed by a BSD-style license that can be | 3 * Use of this source code is governed by a BSD-style license that can be |
4 * found in the LICENSE file. | 4 * found in the LICENSE file. |
5 */ | 5 */ |
6 | 6 |
7 #include <vector> | 7 #include <vector> |
8 | 8 |
9 #include "base/command_line.h" | 9 #include "base/command_line.h" |
10 #include "chrome/browser/ui/browser.h" | 10 #include "chrome/browser/ui/browser.h" |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
85 utf8_content_.append(";\n"); | 85 utf8_content_.append(";\n"); |
86 } | 86 } |
87 | 87 |
88 std::string utf8_content_; | 88 std::string utf8_content_; |
89 }; | 89 }; |
90 | 90 |
91 IN_PROC_BROWSER_TEST_F(VirtualKeyboardBrowserTest, TypingTest) { | 91 IN_PROC_BROWSER_TEST_F(VirtualKeyboardBrowserTest, TypingTest) { |
92 RunTest(base::FilePath(FILE_PATH_LITERAL("typing_test.js"))); | 92 RunTest(base::FilePath(FILE_PATH_LITERAL("typing_test.js"))); |
93 } | 93 } |
94 | 94 |
| 95 IN_PROC_BROWSER_TEST_F(VirtualKeyboardBrowserTest, ControlKeysTest) { |
| 96 RunTest(base::FilePath(FILE_PATH_LITERAL("control_keys_test.js"))); |
| 97 } |
95 // TODO(kevers|rsadam|bshe): Add UI tests for remaining virtual keyboard | 98 // TODO(kevers|rsadam|bshe): Add UI tests for remaining virtual keyboard |
96 // functionality. | 99 // functionality. |
OLD | NEW |