Roll leveldb 3f7758:803d69 (v1.17 -> v1.18)
[chromium-blink-merge.git] / chrome / test / data / chromeos / virtual_keyboard / inputview / typing_test.js
blobf58a5171aee6a6498429de140fc792fbcaf3d5f6
1 /*
2  * Copyright 2014 The Chromium Authors. All rights reserved.
3  * Use of this source code is governed by a BSD-style license that can be
4  * found in the LICENSE file.
5  */
7 /**
8  * Tests typing in the lowercase keyset.
9  */
10 function testLowercaseKeysetAsync(testDoneCallback) {
11   var test = function() {
12     // Mouse events.
13     mockMouseType('l');
14     mockMouseType('p');
16     // Touch events.
17     mockTouchType('l');
18     mockTouchType('p');
19   }
20   RunTest(test, testDoneCallback);