diff options
Diffstat (limited to 'dom/media/tests/mochitest/test_peerConnection_removeVideoTrack.html')
-rw-r--r-- | dom/media/tests/mochitest/test_peerConnection_removeVideoTrack.html | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/dom/media/tests/mochitest/test_peerConnection_removeVideoTrack.html b/dom/media/tests/mochitest/test_peerConnection_removeVideoTrack.html new file mode 100644 index 000000000..88fff9531 --- /dev/null +++ b/dom/media/tests/mochitest/test_peerConnection_removeVideoTrack.html @@ -0,0 +1,35 @@ +<!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: remove video track" + }); + + var test; + runNetworkTest(function (options) { + test = new PeerConnectionTest(options); + addRenegotiation(test.chain, + [ + function PC_LOCAL_REMOVE_VIDEO_TRACK(test) { + test.setOfferOptions({ offerToReceiveVideo: true }); + test.setMediaConstraints([], [{video: true}]); + return test.pcLocal.removeSender(0); + }, + ] + ); + + // TODO(bug 1093835): figure out how to verify that media stopped flowing from pcLocal + + test.setMediaConstraints([{video: true}], [{video: true}]); + test.run(); + }); +</script> +</pre> +</body> +</html> |