Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4557)

Unified Diff: chrome/test/data/chromeos/virtual_keyboard/inputview/typing_test.js

Issue 314453002: Upload IME Test CRX to latest version. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix nit Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/test/data/chromeos/virtual_keyboard/inputview/test_base.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/data/chromeos/virtual_keyboard/inputview/typing_test.js
diff --git a/chrome/test/data/chromeos/virtual_keyboard/inputview/typing_test.js b/chrome/test/data/chromeos/virtual_keyboard/inputview/typing_test.js
index 335e42898e4f0b38ff87b9f7edd5501a1fd07971..f58a5171aee6a6498429de140fc792fbcaf3d5f6 100644
--- a/chrome/test/data/chromeos/virtual_keyboard/inputview/typing_test.js
+++ b/chrome/test/data/chromeos/virtual_keyboard/inputview/typing_test.js
@@ -7,12 +7,15 @@
/**
* Tests typing in the lowercase keyset.
*/
-function testLowercaseKeyset() {
- // Mouse events.
- mockMouseType('l');
- mockMouseType('p');
+function testLowercaseKeysetAsync(testDoneCallback) {
+ var test = function() {
+ // Mouse events.
+ mockMouseType('l');
+ mockMouseType('p');
- // Touch events.
- mockTouchType('l');
- mockTouchType('p');
+ // Touch events.
+ mockTouchType('l');
+ mockTouchType('p');
+ }
+ RunTest(test, testDoneCallback);
}
« no previous file with comments | « chrome/test/data/chromeos/virtual_keyboard/inputview/test_base.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698