1 <html class=
"reftest-wait">
3 <script language=
"javascript">
6 remotePC
= new RTCPeerConnection();
7 var cand
= new RTCIceCandidate(
8 {candidate
: "1 1 UDP 1 127.0.0.1 34567 type host",
10 sdbMid
: "helloworld", // Mis-spelt attribute for bug 833948 compatibility.
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
18 function finish(arg
) {
19 document
.documentElement
.removeAttribute("class");
23 <body onload=
"setTimeout(start, 100)">