Hi all.
Found an interesting bug I think.
Make a simple html page with a speech to text input with x-webkit-speech, like this for exemple :
<html><body>
<input type="text" id="speech" x-webkit-speech />
</body></html>
If you open it in chrome and you click the microphone in the input, everything works Ok.
Now, create a plain extension, with "permissions": ["tabs"], and in the popup script somewhere create a panel or detached_panel window pointing to the previous html page. For exemple :
chrome.windows.create({
url: "index.html",
width: 320,
height: 240,
focused: true,
type: "detached_panel"
});
Now click on the microphone in the input : nothing happens, nada.
Is this a known bug ?
Also, I have tested with type="popup" or type="normal" and it works Ok, so the bug seems to be only on panel and detached_panel windows.
Thanks for any clue.