and found that
Firefox 15.01 will play the ogg, but not the mp3.
IE8 won't play anything.
Chrome (Version 22.0.1229.92 m) will play both.
That's ironic because the following will play in any Internet Explorer, say version 0 through IE10 if you like.
Without even having to make use the <bgsound> element, I will demonstrate here the posibility of playing audio files without plug-ins using plain <img> tag; to (among other multimedia files) also play a separate audio file (mp3 in this demo). The supported formats are limited only by the number/variety of formats your current OS can play independently.
<!DOCTYPE html>
<html>
<head>
<basefont face="geneva, arial, helvetica" size=2 color=#555555>
</head>
<body>
<div align=center>
<h1> The Policy Of Truth </h1>
<img id=audio title="right-click for [ Play : Pause / Stop ] commands"
src=http://t0.gstatic.com/images?q=tbn:ANd9GcR8cqxyVAIUQwMiijsXV3Z6fru33gnRIJYONVzJmBaV7z1LPIc0
border=0 height=180 width=244
dynsrc=http://www.soundcat.ch/download.php?id=13477
controls
>
<br>
<div id=inf>
<img src=http://www.nantucketsound.com/images/loading.gif><br>
wait for file download
</div>
</div>
<script>
document.
onreadystatechange =
function(){
if(audio.complete)
inf.innerHTML = audio.mimeType + "<br>",
inf.innerHTML += ( audio.fileSize / 1024 / 1024 ).toPrecision(4) + " MB";
}
</script>
</body>
</html>
p.s.: The file linked is not a stream, -meaning: will not play before it is fully loaded!