gecko/content/media/test/crashtests/459439-1.html
Jesse Ruderman 5b80b3d6af Hopefully fix orange (bug 509272)
--HG--
rename : content/media/test/sound.ogg => content/media/test/crashtests/sound.ogg
2009-08-08 17:36:23 -07:00

33 lines
557 B
HTML

<!DOCTYPE html>
<html class="reftest-wait">
<head>
<script type="text/javascript">
var i = 0;
function boom()
{
var div = document.getElementById("div");
var audio = document.getElementById("audio");
audio.onload = null;
div.textContent = "FAIL";
audio.src += "";
div.textContent = "PASS?";
++i;
setTimeout(done, 1);
}
function done()
{
document.documentElement.removeAttribute("class");
}
</script>
</head>
<body>
<audio id="audio" autoplay src="sound.ogg" onload="setTimeout(boom, 1);"></audio>
<div id="div"></div>
</body>
</html>