tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

clearkey-mp4-setmediakeys-multiple-times-with-the-same-mediakeys.https.html (1838B)


      1 <!doctype html>
      2 <html>
      3  <head>
      4    <meta charset=utf-8>
      5    <title>Encrypted Media Extensions: setMediaKeys multiple times with the same mediakeys with Clear Key</title>
      6    <link rel="help" href="https://w3c.github.io/encrypted-media/">
      7 
      8    <!-- Web Platform Test Harness scripts -->
      9    <script src=/resources/testharness.js></script>
     10    <script src=/resources/testharnessreport.js></script>
     11 
     12    <!-- Helper scripts for Encrypted Media Extensions tests  -->
     13    <script src=/encrypted-media/util/utils.js></script>
     14    <script src=/encrypted-media/util/utf8.js></script>
     15    <script src=/encrypted-media/util/testmediasource.js></script>
     16 
     17    <!-- Content metadata -->
     18    <script src=/encrypted-media/content/content-metadata.js></script>
     19 
     20    <!-- Message handler for Clear Key -->
     21    <script src=/encrypted-media/util/clearkey-messagehandler.js></script>
     22 
     23    <!-- The script for this specific test -->
     24    <script src=/encrypted-media/scripts/setmediakeys-multiple-times-with-the-same-mediakeys.js></script>
     25 
     26  </head>
     27  <body>
     28    <div id='log'></div>
     29 
     30    <div id='video'>
     31      <video id="videoelement" width="200px"></video>
     32    </div>
     33 
     34    <script>
     35        var contentitem = content['mp4-basic'];
     36        getSupportedContent( 'org.w3.clearkey' ).then( function( contents ) {
     37            runTest( {  video:              document.getElementById('videoelement'),
     38                        keysystem:          'org.w3.clearkey',
     39                        content:            contentitem,
     40                        audioPath:          contentitem.audio.path,
     41                        videoPath:          contentitem.video.path,
     42                        audioType:          contentitem.audio.type,
     43                        videoType:          contentitem.video.type
     44                     } );
     45        } );
     46    </script>
     47  </body>
     48 </html>