diff options
Diffstat (limited to 'dom/media/webrtc/tests/mochitests/test_peerConnection_basicWindowshare.html')
-rw-r--r-- | dom/media/webrtc/tests/mochitests/test_peerConnection_basicWindowshare.html | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/dom/media/webrtc/tests/mochitests/test_peerConnection_basicWindowshare.html b/dom/media/webrtc/tests/mochitests/test_peerConnection_basicWindowshare.html new file mode 100644 index 0000000000..7348977dd5 --- /dev/null +++ b/dom/media/webrtc/tests/mochitests/test_peerConnection_basicWindowshare.html @@ -0,0 +1,30 @@ +<!DOCTYPE HTML> +<html> +<head> + <script type="application/javascript" src="pc.js"></script> +</head> +<body> +<pre id="test"> +<script type="application/javascript"> + createHTML({ + bug: "1038926", + title: "Basic windowshare-only peer connection" + }); + + var test; + runNetworkTest(function (options) { + test = new PeerConnectionTest(options); + var constraints = { + video: { + mozMediaSource: "window", + mediaSource: "window" + }, + fake: false + }; + test.setMediaConstraints([constraints], []); + test.run(); + }); +</script> +</pre> +</body> +</html> |