gecko-dev/dom/media/test/test_video_gzip_encoding.html
Chris Pearce 5c3bbc5b04 Bug 1370177 - Add test case for gzipped MP4 with Content-Length set to compressed file length. r=jwwang.
Adds a testcase corresponding to what's happening here; we have a gzipped
file with a Content-Length which is the length of the compressed stream.

MozReview-Commit-ID: 8SDayegP11W

--HG--
extra : rebase_source : 1ae21d0f202e24f6e0236d3f2d2363ab930b0c2e
2017-07-04 23:37:14 +12:00

26 lines
903 B
HTML

<!DOCTYPE HTML>
<html>
<head>
<title>Bug 1370177 gzipped mp4 with Content-Length</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>
<!--
Tests that an MP4 file served over a "Content-Encoding: gzip"
HTTP channel with a "Content-Length" header set to the length
of the compressed file works.
-->
<video id='v' src="http://mochi.test:8888/tests/dom/media/test/gzipped_mp4.sjs" controls autoplay></video>
<script>
SimpleTest.waitForExplicitFinish();
var v = document.getElementById('v');
v.addEventListener("ended", ()=>{
SimpleTest.finish();
mediaTestCleanup();
});
</script>
</body>
</html>