mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 15:15:23 +00:00
41 lines
1.1 KiB
HTML
41 lines
1.1 KiB
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<title>Test playback of media files that should play OK</title>
|
|
<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>
|
|
<div id="log"></div>
|
|
<pre id="test">
|
|
<script class="testbody" type="text/javascript">
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
|
|
|
function startTest() {
|
|
var v = document.createElement("video");
|
|
ok(v.canPlayType('video/mp4; codecs="avc1.64000d,mp4a.40.2"') != "",
|
|
"Should be able to play MP4/H.264/AAC via <video> using GMP");
|
|
v.src = "short.mp4";
|
|
v.addEventListener("ended", function(event) {
|
|
ok(true, "Reached end");
|
|
SimpleTest.finish();
|
|
});
|
|
document.body.appendChild(v);
|
|
v.play();
|
|
}
|
|
|
|
var testPrefs = [
|
|
['media.gmp.decoder.aac', 1], // gmp-clearkey
|
|
['media.gmp.decoder.h264', 1], // gmp-clearkey
|
|
['media.gmp.decoder.enabled', true]
|
|
];
|
|
|
|
SpecialPowers.pushPrefEnv({'set': testPrefs}, startTest);
|
|
|
|
</script>
|
|
</pre>
|
|
</body>
|
|
</html>
|