-1:000000000000 | 0:a7356198b998 |
---|---|
1 <!DOCTYPE HTML> | |
2 <html> | |
3 <!-- | |
4 https://bugzilla.mozilla.org/show_bug.cgi?id=791278 | |
5 --> | |
6 <head> | |
7 <meta charset="utf-8"> | |
8 <title>Simple PeerConnection Video Test - Invalid callback</title> | |
9 <script type="application/javascript"> | |
10 var pc1 = new mozRTCPeerConnection(); | |
11 pc1.setLocalDescription(function() {}); | |
12 | |
13 var pc2 = new mozRTCPeerConnection(); | |
14 pc2.setRemoteDescription(function() {}); | |
15 </script> | |
16 </head> | |
17 | |
18 <body> | |
19 </body> | |
20 </html> |