1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 // TTS api test for Chrome on ChromeOS.
6 // browser_tests.exe --gtest_filter="TtsApiTest.*"
9 function testWordCallbacks() {
14 'onEvent': function(event) {
18 chrome.test.assertEq('word', event.type);
19 chrome.test.assertEq(0, event.charIndex);
22 chrome.test.assertEq('word', event.type);
23 chrome.test.assertEq(4, event.charIndex);
26 chrome.test.assertEq('word', event.type);
27 chrome.test.assertEq(8, event.charIndex);
30 chrome.test.assertEq('end', event.type);
31 chrome.test.assertEq(13, event.charIndex);
32 chrome.test.succeed();