tor-browser

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

test_peerConnection_asymmetricIsolation.html (835B)


      1 <!DOCTYPE HTML>
      2 <html>
      3 <head>
      4  <script type="application/javascript">var scriptRelativePath = "../";</script>
      5  <script type="application/javascript" src="../pc.js"></script>
      6  <script type="application/javascript" src="../blacksilence.js"></script>
      7  <script type="application/javascript" src="identityPcTest.js"></script>
      8 </head>
      9 <body>
     10 <pre id="test">
     11 <script type="application/javascript">
     12 createHTML({
     13  title: "Non-isolated media entering an isolated session becomes isolated",
     14  bug: "996238"
     15 });
     16 
     17 function theTest() {
     18  // Override the remote media capture options to remove isolation for the
     19  // remote party; the test verifies that the media it receives on the local
     20  // side is isolated anyway.
     21  return identityPcTest({
     22    audio: true,
     23    video: true
     24  });
     25 }
     26 runNetworkTest(theTest);
     27 
     28 </script>
     29 </pre>
     30 </body>
     31 </html>