tor-browser

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

webrtc-blocked-explicit.html (438B)


      1 <!DOCTYPE html>
      2 <html>
      3 
      4 <head>
      5    <meta http-equiv="Content-Security-Policy" content="webrtc 'block';">
      6    <title>webrtc blocked with an explicit webrtc blocked policy</title>
      7    <script src="/resources/testharness.js"></script>
      8    <script src="/resources/testharnessreport.js"></script>
      9    <script src="webrtc.js"></script>
     10 </head>
     11 
     12 <body>
     13    <script>
     14        expectBlock();
     15    </script>
     16    <div id="log"></div>
     17 </body>
     18 
     19 </html>