dom/media/tests/crashtests/837324.html

Thu, 22 Jan 2015 13:21:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 22 Jan 2015 13:21:57 +0100
branch
TOR_BUG_9701
changeset 15
b8a032363ba2
permissions
-rw-r--r--

Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6

michael@0 1 <!DOCTYPE html>
michael@0 2 <html class="reftest-wait">
michael@0 3 <!--
michael@0 4 https://bugzilla.mozilla.org/show_bug.cgi?id=837324
michael@0 5 -->
michael@0 6 <head>
michael@0 7 <meta charset="utf-8">
michael@0 8 <title>Bug 837324</title>
michael@0 9 <script type="application/javascript">
michael@0 10 function finish() {
michael@0 11 document.documentElement.removeAttribute("class");
michael@0 12 }
michael@0 13
michael@0 14 function start() {
michael@0 15 var o0 = new mozRTCPeerConnection();
michael@0 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});
michael@0 17 try {o0.addIceCandidate(o1);} catch(e) {} // bug 842075 - remove try when fixed
michael@0 18
michael@0 19 finish();
michael@0 20 }
michael@0 21 </script>
michael@0 22 </head>
michael@0 23
michael@0 24 <body onload="setTimeout(start, 100)">
michael@0 25 </html>

mercurial