tor-browser

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

test_dataChannel_basicAudioVideoNoBundle.html (630B)


      1 <!DOCTYPE HTML>
      2 <html>
      3 <head>
      4  <script type="application/javascript" src="pc.js"></script>
      5 </head>
      6 <body>
      7 <pre id="test">
      8 <script type="application/javascript">
      9  createHTML({
     10    bug: "1016476",
     11    title: "Basic data channel audio/video connection without bundle"
     12  });
     13 
     14 var test;
     15 runNetworkTest(function (options) {
     16  options = options || { };
     17  options.bundle = false;
     18  test = new PeerConnectionTest(options);
     19  addInitialDataChannel(test.chain);
     20  test.setMediaConstraints([{audio: true}, {video: true}],
     21                           [{audio: true}, {video: true}]);
     22  return test.run();
     23 });
     24 </script>
     25 </pre>
     26 </body>
     27 </html>