Bug 1333259 - Remove test_gmp_playback.html. r=gerald

We have removed unencrypted decoding via GMP, so we can remove its test.

MozReview-Commit-ID: 5VRbcbDFrhu

--HG--
extra : rebase_source : 33eb8fb084c48ecd2dcf28ba3caf5da37fa5de26
This commit is contained in:
Chris Pearce 2017-01-24 13:58:43 +13:00
Родитель 76862f250b
Коммит f234632cce
2 изменённых файлов: 0 добавлений и 42 удалений

Просмотреть файл

@ -718,8 +718,6 @@ skip-if = toolkit == 'android' # bug 1149374
[test_error_on_404.html]
[test_fastSeek.html]
[test_fastSeek-forwards.html]
[test_gmp_playback.html]
skip-if = (os != 'win' || os_version == '5.1') # Only gmp-clearkey on Windows Vista and later decodes
[test_imagecapture.html]
[test_info_leak.html]
[test_invalid_reject.html]

Просмотреть файл

@ -1,40 +0,0 @@
<!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>