mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-20 23:37:33 +09:00
36 lines
841 B
HTML
36 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>
|