summaryrefslogtreecommitdiffstats
path: root/dom/media/test/test_video_gzip_encoding.html
blob: 355a245713de61796dc7255e1871cd853a583711 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!DOCTYPE HTML>
<html>
  <head>
    <title>Bug 1370177 gzipped mp4 with Content-Length</title>
    <script 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>