mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
44 lines
1.5 KiB
HTML
44 lines
1.5 KiB
HTML
<!DOCTYPE HTML>
|
|
|
|
<!-- This Source Code Form is subject to the terms of the Mozilla Public
|
|
- License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
|
|
|
|
<html>
|
|
<head>
|
|
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
|
|
<script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
|
<script type="application/javascript" src="head.js"></script>
|
|
<script type="application/javascript" src="long.js"></script>
|
|
<script type="application/javascript" src="mediaStreamPlayback.js"></script>
|
|
<script type="application/javascript" src="pc.js"></script>
|
|
<script type="application/javascript" src="templates.js"></script>
|
|
<script type="application/javascript" src="turnConfig.js"></script>
|
|
</head>
|
|
<body>
|
|
<pre id="test">
|
|
<script type="application/javascript">
|
|
createHTML({
|
|
bug: "796892",
|
|
title: "Basic audio-only peer connection",
|
|
visible: true
|
|
});
|
|
|
|
var test;
|
|
runNetworkTest(function (options) {
|
|
options = options || {};
|
|
options.commands = commandsPeerConnection.slice(0);
|
|
options.commands.push(generateIntervalCommand(verifyConnectionStatus,
|
|
1000 * 10,
|
|
1000 * 3600 * 3));
|
|
|
|
test = new PeerConnectionTest(options);
|
|
test.setMediaConstraints([{audio: true, fake: false}],
|
|
[{audio: true, fake: false}]);
|
|
test.run();
|
|
});
|
|
</script>
|
|
</pre>
|
|
</body>
|
|
</html>
|