mirror of
https://github.com/classilla/tenfourfox.git
synced 2024-11-19 18:38:36 +00:00
28 lines
623 B
HTML
28 lines
623 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: "1016476",
|
|
title: "Basic data channel audio/video connection without bundle"
|
|
});
|
|
|
|
var test;
|
|
runNetworkTest(function (options) {
|
|
options = options || { };
|
|
options.bundle = false;
|
|
test = new PeerConnectionTest(options);
|
|
addInitialDataChannel(test.chain);
|
|
test.setMediaConstraints([{audio: true}, {video: true}],
|
|
[{audio: true}, {video: true}]);
|
|
test.run();
|
|
});
|
|
</script>
|
|
</pre>
|
|
</body>
|
|
</html>
|