2009-02-19 09:23:13 -08:00
|
|
|
<!DOCTYPE HTML>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>Wave Media test: ended and replaying</title>
|
2009-05-06 13:46:04 -07:00
|
|
|
<script type="text/javascript" src="/MochiKit/packed.js"></script>
|
2009-02-19 09:23:13 -08:00
|
|
|
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
|
|
|
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<!-- try with autoplay and no v.play in starttest, also with both -->
|
|
|
|
<pre id="test">
|
|
|
|
<script class="testbody" type="text/javascript">
|
|
|
|
// Test if audio can be replayed after ended.
|
|
|
|
var completed = false;
|
2009-02-26 03:55:30 -08:00
|
|
|
var playingCount = 0;
|
|
|
|
var endCount = 0;
|
2009-02-19 09:23:13 -08:00
|
|
|
|
|
|
|
function startTest() {
|
|
|
|
if (completed)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
var v = document.getElementById('v');
|
|
|
|
v.play();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
function playbackStarted() {
|
|
|
|
if (completed)
|
|
|
|
return false;
|
|
|
|
|
2009-02-26 03:55:30 -08:00
|
|
|
playingCount++;
|
2009-02-19 09:23:13 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
function playbackEnded() {
|
|
|
|
if (completed)
|
|
|
|
return false
|
|
|
|
|
2009-02-26 03:55:30 -08:00
|
|
|
endCount++;
|
2009-02-19 09:23:13 -08:00
|
|
|
var v = document.getElementById('v');
|
|
|
|
ok(v.currentTime >= 0.9 && v.currentTime <= 1.1,
|
|
|
|
"Checking currentTime at end: " + v.currentTime);
|
|
|
|
ok(v.ended, "Checking playback has ended");
|
2009-05-07 19:25:13 -07:00
|
|
|
ok(playingCount > 0, "Expect at least one playing event");
|
|
|
|
playingCount = 0;
|
2009-02-26 03:55:30 -08:00
|
|
|
if (endCount < 2) {
|
2009-02-19 09:23:13 -08:00
|
|
|
v.play();
|
2009-02-26 03:55:30 -08:00
|
|
|
} else {
|
|
|
|
ok(endCount == 2, "Check playback after ended event");
|
2009-02-19 09:23:13 -08:00
|
|
|
completed = true;
|
|
|
|
SimpleTest.finish();
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
|
|
|
</script>
|
|
|
|
</pre>
|
|
|
|
<audio id='v'
|
|
|
|
onloadedmetadata='return startTest();'
|
2009-02-26 03:55:30 -08:00
|
|
|
onplaying='return playbackStarted();'
|
2009-02-19 09:23:13 -08:00
|
|
|
onended='return playbackEnded();'>
|
|
|
|
<source type='audio/x-wav' src='r11025_s16_c1.wav'>
|
|
|
|
</audio>
|
|
|
|
</body>
|
|
|
|
</html>
|