Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
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 }
14 function start() {
15 var o0 = new mozRTCPeerConnection();
16 var o1 = new mozRTCIceCandidate({"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
19 finish();
20 }
21 </script>
22 </head>
24 <body onload="setTimeout(start, 100)">
25 </html>