forms-speechinput.js 737 B

12345678910111213141516171819
  1. // speech input for inputs
  2. // by @alrra
  3. // `webkitSpeech` in elem
  4. // doesn`t work correctly in all versions of Chromium based browsers.
  5. // It can return false even if they have support for speech i.imgur.com/2Y40n.png
  6. // Testing with 'onwebkitspeechchange' seems to fix this problem
  7. // this detect only checks the webkit version because
  8. // the speech attribute is likely to be deprecated in favor of a JavaScript API.
  9. // http://lists.w3.org/Archives/Public/public-webapps/2011OctDec/att-1696/speechapi.html
  10. // FIXME: add support for detecting the new spec'd behavior
  11. Modernizr.addTest('speechinput', function(){
  12. var elem = document.createElement('input');
  13. return 'speech' in elem || 'onwebkitspeechchange' in elem;
  14. });