Request to change WebSpeech to remove usage of SpeechSynthesisVoiceList

Hi,

I think that instead of using the custom SpeechSynthesisVoiceList object, we can use a normative Javascript array to return the list of voices
in getVoices().

The IDL change would change from

interface SpeechSynthesis {
	SpeechSynthesisVoiceList getVoices();
};

to

interface SpeechSynthesis {
	sequence<SpeechSynthesisVoice> getVoices();
};

Then the SpeechSynthesisVoiceList can be removed.

Thanks for your consideration

Received on Wednesday, 16 January 2013 20:46:27 UTC