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

31 lines
787 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: "784519",
title: "setLocalDescription (offer) in 'have-remote-offer'"
});
runNetworkTest(function () {
const test = new PeerConnectionTest();
test.setMediaConstraints([{audio: true}], [{audio: true}]);
test.chain.removeAfter("PC_REMOTE_SET_REMOTE_DESCRIPTION");
test.chain.append([
async function PC_REMOTE_SET_LOCAL_OFFER(test) {
const err = await test.pcRemote.setLocalDescriptionAndFail(test.pcLocal._latest_offer);
is(err.name, "InvalidModificationError", "Error is InvalidModificationError");
}
]);
return test.run();
});
</script>
</pre>
</body>
</html>