Bug 1536317 [wpt PR 15895] - Update interfaces/speech-api.idl, a=testonly

Automatic update from web-platform-tests
Update interfaces/speech-api.idl (#15895)

Source: https://github.com/tidoust/reffy-reports/blob/19a80a9/whatwg/idl/speech-api.idl
Build: https://travis-ci.org/tidoust/reffy-reports/builds/507115788
--

wpt-commits: 9002a095d0bd81ac115c0b0b5df8e521291dbb47
wpt-pr: 15895
This commit is contained in:
autofoolip 2019-04-15 13:48:24 +00:00 коммит произвёл James Graham
Родитель 5f34847b97
Коммит d8fb82ced4
1 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -155,6 +155,7 @@ interface SpeechSynthesisUtterance : EventTarget {
interface SpeechSynthesisEvent : Event {
readonly attribute SpeechSynthesisUtterance utterance;
readonly attribute unsigned long charIndex;
readonly attribute unsigned long charLength;
readonly attribute float elapsedTime;
readonly attribute DOMString name;
};
@ -162,6 +163,7 @@ interface SpeechSynthesisEvent : Event {
dictionary SpeechSynthesisEventInit : EventInit {
required SpeechSynthesisUtterance utterance;
unsigned long charIndex = 0;
unsigned long charLength = 0;
float elapsedTime = 0;
DOMString name = "";
};