Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
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() {});
13 var pc2 = new mozRTCPeerConnection();
14 pc2.setRemoteDescription(function() {});
15 </script>
16 </head>
18 <body>
19 </body>
20 </html>