mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-02-09 07:32:04 +00:00
37 lines
841 B
HTML
37 lines
841 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: "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>
|