mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
68a17dc990
canplaythrough results from an estimation of download speed and playback rate and could be fired multiple times or sometimes not at all.
48 lines
1.2 KiB
HTML
48 lines
1.2 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="/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 manager = new MediaTestManager;
|
|
|
|
var player = new Audio();
|
|
|
|
function startTest(test, token) {
|
|
if (!player.canPlayType(test.type)) {
|
|
return;
|
|
}
|
|
manager.started(token);
|
|
var a = new Audio(test.name);
|
|
a.autoplay = true;
|
|
a.addEventListener("ended",
|
|
function(e){
|
|
ok(true, "[" + a.src + "]We should get to the end. Oh look we did.");
|
|
manager.finished(token);
|
|
},
|
|
false);
|
|
}
|
|
|
|
manager.runTests(gAudioTests, startTest);
|
|
|
|
</script>
|
|
</pre>
|
|
</body>
|
|
</html>
|