mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-20 23:37:33 +09:00
23 lines
496 B
HTML
23 lines
496 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: "850275",
|
|
title: "Simple offer media constraint test with audio"
|
|
});
|
|
|
|
runNetworkTest(function() {
|
|
var test = new PeerConnectionTest();
|
|
test.setMediaConstraints([], [{audio: true}]);
|
|
test.setOfferOptions({ offerToReceiveAudio: true });
|
|
test.run();
|
|
});
|
|
</script>
|
|
</pre>
|
|
</body>
|
|
</html>
|