Bug 1946184 - Fix computing the CSD margin right after calling HideWindowChrome(...
[gecko.git] / dom / media / tests / crashtests / 834100.html
blob0042581564bd2efd6e3f97390b67617fda572745
1 <html class="reftest-wait">
2 <head>
3 <script language="javascript">
5 function start() {
6 remotePC = new RTCPeerConnection();
7 var cand = new RTCIceCandidate(
8 {candidate: "1 1 UDP 1 127.0.0.1 34567 type host",
9 sdpMid: "helloworld",
10 sdbMid: "helloworld", // Mis-spelt attribute for bug 833948 compatibility.
11 sdpMLineIndex: 1
12 });
13 try {remotePC.addIceCandidate(cand);} catch(e) {} // bug 842075 - remove try when fixed
14 try {remotePC.addIceCandidate(cand, function(sdp){}, finish);} catch(e) {} // bug 842075 - remove try when fixed
15 finish();
18 function finish(arg) {
19 document.documentElement.removeAttribute("class");
21 </script>
22 </head>
23 <body onload="setTimeout(start, 100)">
24 </body>
25 </html>