1
0
Fork 0
firefox/dom/media/webrtc/tests/mochitests/test_peerConnection_basicAudioVideoNoBundle.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

25 lines
590 B
HTML

<!DOCTYPE HTML>
<html>
<head>
<script type="application/javascript" src="pc.js"></script>
</head>
<body>
<pre id="test">
<script type="application/javascript">
createHTML({
bug: "1016476",
title: "Basic audio/video peer connection with no Bundle"
});
runNetworkTest(options => {
options = options || { };
options.bundle = false;
var test = new PeerConnectionTest(options);
test.setMediaConstraints([{audio: true}, {video: true}],
[{audio: true}, {video: true}]);
return test.run();
});
</script>
</pre>
</body>
</html>