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
76 lines
1.7 KiB
HTML
76 lines
1.7 KiB
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<!--
|
|
https://bugzilla.mozilla.org/show_bug.cgi?id=448534
|
|
-->
|
|
|
|
<head>
|
|
<title>Test for Bug 448534</title>
|
|
<script type="text/javascript" src="/MochiKit/packed.js"></script>
|
|
<script type="text/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=448535">Mozilla Bug 448534</a>
|
|
<pre id="test">
|
|
<script class="testbody" type="text/javascript">
|
|
|
|
var videos = [];
|
|
|
|
function loaded(event) {
|
|
var v = event.target;
|
|
if (v._finished)
|
|
return false;
|
|
v.play();
|
|
return false;
|
|
}
|
|
|
|
function started(event) {
|
|
var v = event.target;
|
|
if (v._finished)
|
|
return false;
|
|
ok(!v.paused, "Video should not be paused while playing");
|
|
v.parentNode.removeChild(v);
|
|
v._played = true;
|
|
return false;
|
|
}
|
|
|
|
function stopped(event) {
|
|
var v = event.target;
|
|
if (v._finished)
|
|
return false;
|
|
v._finished = true;
|
|
ok(v.paused, "Video should be paused after removing from the Document");
|
|
if (AllFinished(videos))
|
|
SimpleTest.finish();
|
|
return false;
|
|
}
|
|
|
|
|
|
for (var i=0; i<gSmallTests.length; ++i) {
|
|
var v = document.createElement('video');
|
|
var test = gSmallTests[i];
|
|
if (!v.canPlayType(test.type))
|
|
continue;
|
|
v.src = test.name;
|
|
v._played = false;
|
|
v._finished = false;
|
|
v.addEventListener("loadedmetadata", loaded, false);
|
|
v.addEventListener("play", started, false);
|
|
v.addEventListener("pause", stopped, false);
|
|
document.body.appendChild(v);
|
|
videos.push(v);
|
|
}
|
|
|
|
if (videos.length == 0) {
|
|
todo(false, "No types supported");
|
|
} else {
|
|
SimpleTest.waitForExplicitFinish();
|
|
}
|
|
|
|
</script>
|
|
</pre>
|
|
</body>
|
|
</html>
|