Bumping manifests a=b2g-bump
[gecko.git] / dom / webidl / SpeechRecognitionEvent.webidl
blob62003392ac72f4223791da5c36109602cc127df6
1 /* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* This Source Code Form is subject to the terms of the Mozilla Public
3  * License, v. 2.0. If a copy of the MPL was not distributed with this file,
4  * You can obtain one at http://mozilla.org/MPL/2.0/.
5  */
6 interface nsISupports;
8 [Pref="media.webspeech.recognition.enable",
9  Constructor(DOMString type, optional SpeechRecognitionEventInit eventInitDict)]
10 interface SpeechRecognitionEvent : Event
12   readonly attribute unsigned long resultIndex;
13   readonly attribute nsISupports? results;
14   readonly attribute DOMString? interpretation;
15   readonly attribute Document? emma;
18 dictionary SpeechRecognitionEventInit : EventInit
20   unsigned long resultIndex = 0;
21   nsISupports? results = null;
22   DOMString interpretation = "";
23   Document? emma = null;