зеркало из https://github.com/mozilla/gecko-dev.git
31 строка
593 B
HTML
31 строка
593 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: "1039666",
|
|
title: "Basic screenshare-only peer connection"
|
|
});
|
|
|
|
var test;
|
|
runNetworkTest(function (options) {
|
|
test = new PeerConnectionTest(options);
|
|
var constraints = {
|
|
video: {
|
|
mozMediaSource: "screen",
|
|
mediaSource: "screen"
|
|
},
|
|
fake: false
|
|
};
|
|
test.setMediaConstraints([constraints], []);
|
|
test.run();
|
|
});
|
|
</script>
|
|
</pre>
|
|
</body>
|
|
</html>
|