mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-20 23:37:33 +09:00
24 lines
523 B
HTML
24 lines
523 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: "1091242",
|
|||
|
|
title: "Multistream: Two video streams"
|
|||
|
|
});
|
|||
|
|
|
|||
|
|
var test;
|
|||
|
|
runNetworkTest(function (options) {
|
|||
|
|
test = new PeerConnectionTest(options);
|
|||
|
|
test.setMediaConstraints([{video: true}, {video: true}],
|
|||
|
|
[{video: true}, {video: true}]);
|
|||
|
|
test.run();
|
|||
|
|
});
|
|||
|
|
</script>
|
|||
|
|
</pre>
|
|||
|
|
</body>
|
|||
|
|
</html>
|