Bug 1333259 - Remove test_gmp_playback.html. r?gerald draft
authorChris Pearce <cpearce@mozilla.com>
Tue, 24 Jan 2017 13:58:43 +1300
changeset 465413 4fca8abc473a283a5659ea38441dd97abff9b707
parent 463342 96cb95af530477edb66ae48d98c18533476e57bb
child 543137 a5c8b93981f3c223ae104d44677d33ac0cf3890d
push id42587
push usercpearce@mozilla.com
push dateTue, 24 Jan 2017 00:59:16 +0000
reviewersgerald
bugs1333259
milestone53.0a1
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
dom/media/test/mochitest.ini
dom/media/test/test_gmp_playback.html
--- a/dom/media/test/mochitest.ini
+++ b/dom/media/test/mochitest.ini
@@ -713,18 +713,16 @@ tags=msg capturestream
 skip-if = toolkit == 'android' # bug 1149374
 [test_eme_waitingforkey.html]
 skip-if = toolkit == 'android' # bug 1149374
 [test_empty_resource.html]
 [test_error_in_video_document.html]
 [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]
 [test_invalid_reject_play.html]
 [test_invalid_seek.html]
 [test_load.html]
 [test_load_candidates.html]
 [test_load_same_resource.html]
deleted file mode 100644
--- a/dom/media/test/test_gmp_playback.html
+++ /dev/null
@@ -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>