tor-browser

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

791278.html (438B)


      1 <!DOCTYPE HTML>
      2 <html>
      3 <!--
      4 https://bugzilla.mozilla.org/show_bug.cgi?id=791278
      5 -->
      6 <head>
      7  <meta charset="utf-8">
      8  <title>Simple PeerConnection Video Test - Invalid callback</title>
      9  <script type="application/javascript">
     10    var pc1 = new RTCPeerConnection();
     11    pc1.setLocalDescription(function() {});
     12 
     13    var pc2 = new RTCPeerConnection();
     14    pc2.setRemoteDescription(function() {});
     15  </script>
     16 </head>
     17 
     18 <body>
     19 </body>
     20 </html>