-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove incorrect claims of prefixed Web Speech interfaces (#7565)
The set of webkitSpeech* members on the global object are: - webkitSpeechGrammar - webkitSpeechGrammarList - webkitSpeechRecognition - webkitSpeechRecognitionError - webkitSpeechRecognitionEvent These 3 other SpeechRecognition* interfaces are instead decorated with [LegacyNoInterfaceObject] in Chromium source, which means their interfaces objects are not exposed at all. They don't have constructors, as they are accessed from the `SpeechRecognitionResultList` at `event.results` for a "result" event. So while use of prefixes is required to get to these APIs, they are not themselves prefixed. See also #7554.
- Loading branch information
Showing
3 changed files
with
0 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters