tor-browser

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

drm-mp4-setmediakeys.https.html (1283B)


      1 <!doctype html>
      2 <html>
      3  <head>
      4    <meta charset=utf-8>
      5    <title>Encrypted Media Extensions: setMediaKeys with DRM</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 
     16    <!-- Content metadata -->
     17    <script src=/encrypted-media/content/content-metadata.js></script>
     18 
     19    <!-- The script for this specific test -->
     20    <script src=/encrypted-media/scripts/setmediakeys.js></script>
     21 
     22  </head>
     23  <body>
     24    <div id='log'></div>
     25 
     26    <div id='video'>
     27      <video id="videoelement" width="200px"></video>
     28    </div>
     29 
     30    <script>
     31        var keysystem = getSupportedKeySystem();
     32        getSupportedContent( keysystem ).then( function( contents ) {
     33            runTest( {  video:              document.getElementById('videoelement'),
     34                        keysystem:          keysystem,
     35                        content:            contents[ 0 ]
     36                     } );
     37        } );
     38    </script>
     39  </body>
     40 </html>