tor-browser

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

1913311.html (460B)


      1 <!DOCTYPE html>
      2 <script>
      3 document.addEventListener("DOMContentLoaded", async () => {
      4  const decoder = new VideoDecoder({
      5    'output': (e) => {},
      6    'error': (e) => {},
      7  });
      8  // media.test.null.decoder.creation-failure must set to true for this test!
      9  decoder.configure({
     10    codec: 'vp8',
     11    codedWidth: 320,
     12    codedHeight: 240,
     13    visibleRect: {x: 0, y: 0, width: 320, height: 240},
     14    displayWidth: 320,
     15    displayHeight: 240,
     16  });
     17 })
     18 </script>