tor-browser

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

861958.html (484B)


      1 <!DOCTYPE HTML>
      2 <html>
      3 <!--
      4 https://bugzilla.mozilla.org/show_bug.cgi?id=861958
      5 -->
      6 <head>
      7  <meta charset="utf-8">
      8  <title>bug 861958</title>
      9  <script type="application/javascript">
     10    function start() {
     11      var o0 = new window.RTCPeerConnection();
     12      var o1 = o0.createDataChannel("foo", {
     13          "protocol": "text/char",
     14          "preset": false,
     15          "stream": 512
     16      });
     17      o0.close();
     18    }
     19  </script>
     20 </head>
     21 
     22 <body onload="start()">
     23 </body>
     24 </html>