test_peerConnection_basicAudioVideoNoBundle.html (590B)
1 <!DOCTYPE HTML> 2 <html> 3 <head> 4 <script type="application/javascript" src="pc.js"></script> 5 </head> 6 <body> 7 <pre id="test"> 8 <script type="application/javascript"> 9 createHTML({ 10 bug: "1016476", 11 title: "Basic audio/video peer connection with no Bundle" 12 }); 13 14 runNetworkTest(options => { 15 options = options || { }; 16 options.bundle = false; 17 var test = new PeerConnectionTest(options); 18 test.setMediaConstraints([{audio: true}, {video: true}], 19 [{audio: true}, {video: true}]); 20 return test.run(); 21 }); 22 </script> 23 </pre> 24 </body> 25 </html>