mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 20:17:37 +00:00
33 lines
567 B
HTML
33 lines
567 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" oncanplaythrough="setTimeout(boom, 1);"></audio>
|
|
<div id="div"></div>
|
|
</body>
|
|
</html>
|