tor-browser

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

idlharness.https.html (943B)


      1 <!doctype html>
      2 <html>
      3  <head>
      4    <meta charset=utf-8>
      5    <title>Encrypted Media Extentions IDL test</title>
      6    <meta name="timeout" content="long">
      7    <link rel="help" href="https://w3c.github.io/encrypted-media/">
      8 
      9    <script src=/resources/testharness.js></script>
     10    <script src=/resources/testharnessreport.js></script>
     11    <script src=/resources/WebIDLParser.js></script>
     12    <script src=/resources/idlharness.js></script>
     13  </head>
     14  <body>
     15    <h1 class="instructions">Description</h1>
     16    <p class="instructions">
     17      This test verifies that implementations of the Encrypted Media Extensions API match its WebIDL definition.
     18    </p>
     19 
     20    <div id='log'></div>
     21 
     22    <script>
     23      'use strict';
     24 
     25      idl_test(
     26        ['encrypted-media'],
     27        ['html', 'dom'],
     28        idl_array => {
     29          idl_array.add_objects({
     30            Navigator: ['navigator'],
     31          });
     32        }
     33      );
     34    </script>
     35  </body>
     36 </html>