mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-12 17:22:04 +00:00
5c3bbc5b04
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
26 lines
903 B
HTML
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>
|