mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 17:55:07 +02:00
9 lines
175 B
Plaintext
9 lines
175 B
Plaintext
// https://wicg.github.io/speech-api/#speechgrammar
|
|
[Exposed=Window]
|
|
interface SpeechGrammar {
|
|
constructor();
|
|
|
|
attribute DOMString src;
|
|
attribute float weight;
|
|
};
|