mirror of
https://github.com/roytam1/palemoon26.git
synced 2026-05-26 05:44:31 +00:00
8d816ab963
bug886205, bug870103, bug886611, bug886241, bug878142, bug857334, bug886128, bug885596, bug887068, bug868302, bug886575, bug809969, bug860782, bug886285, bug848592, bug877748, bug886647, bug879079, bug886827, bug884648, bug866638, bug885463, bug826124, bug844805, bug886551, bug884407, bug884369, bug887002, bug886632, 572efc8fea86, bug886230, bug886689, bug884124
30 lines
826 B
Plaintext
30 lines
826 B
Plaintext
/* -*- 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/.
|
|
*/
|
|
|
|
enum SpeechRecognitionErrorCode {
|
|
"no-speech",
|
|
"aborted",
|
|
"audio-capture",
|
|
"network",
|
|
"not-allowed",
|
|
"service-not-allowed",
|
|
"bad-grammar",
|
|
"language-not-supported"
|
|
};
|
|
|
|
[Constructor(DOMString type, optional SpeechRecognitionErrorInit eventInitDict)]
|
|
interface SpeechRecognitionError : Event
|
|
{
|
|
readonly attribute SpeechRecognitionErrorCode error;
|
|
readonly attribute DOMString? message;
|
|
};
|
|
|
|
dictionary SpeechRecognitionErrorInit : EventInit
|
|
{
|
|
SpeechRecognitionErrorCode error = "no-speech";
|
|
DOMString message = "";
|
|
};
|