use of com.gargoylesoftware.htmlunit.javascript.host.speech.SpeechSynthesis in project htmlunit by HtmlUnit.
the class HTMLCollectionFrames method getSpeechSynthesis.
/**
* Returns the {@code speechSynthesis} property.
* @return the {@code speechSynthesis} property
*/
@JsxGetter({ CHROME, EDGE })
public SpeechSynthesis getSpeechSynthesis() {
final SpeechSynthesis speechSynthesis = new SpeechSynthesis();
speechSynthesis.setParentScope(this);
speechSynthesis.setPrototype(getPrototype(speechSynthesis.getClass()));
return speechSynthesis;
}
Aggregations