When a web page downloads an MP3 file via the HTML5 tag:
<audio autoplay="autoplay">
<source src="../blah" type="audio/mp3"/>
</audio>
Does the audio play while (at the same time) the MP3 is download? Or, does the file download first then the sound is played?
Thank you!