mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
c7317b404d
--HG-- rename : content/media/test/test_play.html => content/media/test/test_play_events.html rename : content/media/test/test_progress2.html => content/media/test/test_progress.html rename : content/media/test/test_onloadedmetadata.html => content/media/test/test_replay_metadata.html rename : content/media/test/test_wav_trunc_seek.html => content/media/test/test_seek_out_of_range.html rename : content/media/test/test_bug495319.html => content/media/test/test_timeupdate_small_files.html rename : content/media/test/test_bug486646.html => content/media/test/test_video_to_canvas.html
62 lines
1.6 KiB
HTML
62 lines
1.6 KiB
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<!--
|
|
https://bugzilla.mozilla.org/show_bug.cgi?id=528566
|
|
-->
|
|
<head>
|
|
<title>Test for Bug 528566</title>
|
|
<script type="application/javascript" src="/MochiKit/packed.js"></script>
|
|
<script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
|
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
|
|
<script type="text/javascript" src="manifest.js"></script>
|
|
</head>
|
|
<body>
|
|
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=528566">Mozilla Bug 528566</a>
|
|
<p id="display"></p>
|
|
<div id="content" style="display: none">
|
|
|
|
</div>
|
|
<pre id="test">
|
|
<script type="application/javascript">
|
|
|
|
/** Test for Bug 528566 **/
|
|
|
|
var testsStarted = 0;
|
|
var testsComplete = 0;
|
|
|
|
var player = new Audio();
|
|
|
|
var audios = [];
|
|
for (var i=0; i<gAudioTests.length; i++) {
|
|
var test = gAudioTests[i];
|
|
if (!player.canPlayType(test.type))
|
|
continue;
|
|
var a = new Audio(test.name);
|
|
++testsStarted;
|
|
a.setAttribute("autoplay", false);
|
|
a.addEventListener("canplaythrough",
|
|
function(e){ e.target.play(); },
|
|
false);
|
|
a.addEventListener("ended",
|
|
function(e){
|
|
ok(true, "We should get to the end. Oh look we did.");
|
|
testsComplete++;
|
|
if (testsStarted == testsComplete) {
|
|
SimpleTest.finish();
|
|
}
|
|
},
|
|
false);
|
|
audios.push(a);
|
|
}
|
|
|
|
if (testsStarted != 0) {
|
|
SimpleTest.waitForExplicitFinish();
|
|
} else {
|
|
todo(false, "No types supported");
|
|
}
|
|
|
|
</script>
|
|
</pre>
|
|
</body>
|
|
</html>
|