summaryrefslogtreecommitdiffstats
path: root/dom/media/tests/mochitest/test_peerConnection_basicWindowshare.html
diff options
context:
space:
mode:
Diffstat (limited to 'dom/media/tests/mochitest/test_peerConnection_basicWindowshare.html')
-rw-r--r--dom/media/tests/mochitest/test_peerConnection_basicWindowshare.html36
1 files changed, 36 insertions, 0 deletions
diff --git a/dom/media/tests/mochitest/test_peerConnection_basicWindowshare.html b/dom/media/tests/mochitest/test_peerConnection_basicWindowshare.html
new file mode 100644
index 000000000..387ea9aec
--- /dev/null
+++ b/dom/media/tests/mochitest/test_peerConnection_basicWindowshare.html
@@ -0,0 +1,36 @@
+<!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) {
+ const isWinXP = navigator.userAgent.indexOf("Windows NT 5.1") != -1;
+ if (IsMacOSX10_6orOlder() || isWinXP) {
+ ok(true, "Screensharing disabled for OSX10.6 and WinXP");
+ SimpleTest.finish();
+ return;
+ }
+ test = new PeerConnectionTest(options);
+ var constraints = {
+ video: {
+ mozMediaSource: "window",
+ mediaSource: "window"
+ },
+ fake: false
+ };
+ test.setMediaConstraints([constraints], [constraints]);
+ test.run();
+ });
+</script>
+</pre>
+</body>
+</html>