1
0
Fork 0
firefox/dom/media/webrtc/tests/mochitests/test_peerConnection_addDataChannel.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

33 lines
838 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: "1017888",
title: "Renegotiation: add DataChannel"
});
runNetworkTest(function (options) {
const test = new PeerConnectionTest(options);
addRenegotiation(test.chain,
commandsCreateDataChannel,
commandsCheckDataChannel);
// Insert before the second PC_LOCAL_WAIT_FOR_MEDIA_FLOW
test.chain.insertBefore('PC_LOCAL_WAIT_FOR_MEDIA_FLOW',
commandsWaitForDataChannel,
false,
1);
test.setMediaConstraints([{audio: true}], [{audio: true}]);
return test.run();
});
</script>
</pre>
</body>
</html>