2013-04-03 22:13:16 +00:00
|
|
|
/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
*
|
|
|
|
* The origin of this IDL file is
|
|
|
|
* http://dvcs.w3.org/hg/speech-api/raw-file/tip/speechapi.html
|
|
|
|
*
|
|
|
|
* Copyright © 2012 W3C® (MIT, ERCIM, Keio), All Rights Reserved. W3C
|
|
|
|
* liability, trademark and document use rules apply.
|
|
|
|
*/
|
|
|
|
|
2016-01-11 18:43:57 +00:00
|
|
|
[Constructor(DOMString type, SpeechSynthesisEventInit eventInitDict),
|
2014-02-06 20:00:37 +00:00
|
|
|
Pref="media.webspeech.synth.enabled"]
|
2013-06-18 18:48:45 +00:00
|
|
|
interface SpeechSynthesisEvent : Event
|
|
|
|
{
|
2015-07-01 08:14:00 +00:00
|
|
|
readonly attribute SpeechSynthesisUtterance utterance;
|
2013-04-03 22:13:16 +00:00
|
|
|
readonly attribute unsigned long charIndex;
|
|
|
|
readonly attribute float elapsedTime;
|
2013-06-18 18:48:45 +00:00
|
|
|
readonly attribute DOMString? name;
|
|
|
|
};
|
|
|
|
|
|
|
|
dictionary SpeechSynthesisEventInit : EventInit
|
|
|
|
{
|
2015-07-01 08:14:00 +00:00
|
|
|
required SpeechSynthesisUtterance utterance;
|
2013-06-18 18:48:45 +00:00
|
|
|
unsigned long charIndex = 0;
|
|
|
|
float elapsedTime = 0;
|
|
|
|
DOMString name = "";
|
2013-04-03 22:13:16 +00:00
|
|
|
};
|