tor-browser

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

837324.html (730B)


      1 <!DOCTYPE html>
      2 <html class="reftest-wait">
      3 <!--
      4 https://bugzilla.mozilla.org/show_bug.cgi?id=837324
      5 -->
      6 <head>
      7  <meta charset="utf-8">
      8  <title>Bug 837324</title>
      9  <script type="application/javascript">
     10    function finish() {
     11      document.documentElement.removeAttribute("class");
     12    }
     13 
     14    function start() {
     15      var o0 = new RTCPeerConnection();
     16      var o1 = new RTCIceCandidate({"candidate":"0 -65535 IP 0 stun.sipgate.net 3227326073 type ::ffff:192.0.2.128 host 2302600701","sdpMid":"video 3907077665 RTP/SAVPF 5000","sdpMLineIndex":7});
     17      try {o0.addIceCandidate(o1);} catch(e) {} // bug 842075 - remove try when fixed
     18 
     19      finish();
     20    }
     21  </script>
     22 </head>
     23 
     24 <body onload="setTimeout(start, 100)">
     25 </html>