var u = new SpeechSynthesisUtterance(); u.text = 'Hello World'; u.lang = 'en-US'; u.rate = 1.2; u.onend = function(event) { alert('Finished in ' + event.elapsedTime + ' seconds.'); } speechSynthesis.speak(u); * RESULTS No matter what values you give it, event.elapsedTime is always 1364484608. Expected a value more like 1.42346897, as this is value should be a float value representing seconds of elapsed speech time.
rdar://13584644
Created attachment 196682 [details] patch
Adding Tim to help with review
Comment on attachment 196682 [details] patch Thanks!
Comment on attachment 196682 [details] patch Clearing flags on attachment: 196682 Committed r147801: <http://trac.webkit.org/changeset/147801>
All reviewed patches have been landed. Closing bug.