Bug 856319 - Don't offer m=application unless createDataChannel is called first. r=jesup

This commit is contained in:
Henrik Skupin 2013-05-16 21:59:49 +02:00
parent 36ae0d2a11
commit 74a4d15c23
2 changed files with 34 additions and 0 deletions

View File

@ -11,6 +11,7 @@ relativesrcdir = @relativesrcdir@
include $(DEPTH)/config/autoconf.mk
MOCHITEST_FILES = \
test_dataChannel_noOffer.html \
test_getUserMedia_exceptions.html \
test_getUserMedia_basicAudio.html \
test_getUserMedia_basicVideo.html \

View File

@ -0,0 +1,33 @@
<!DOCTYPE HTML>
<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>
</head>
<body>
<pre id="test">
<script type="application/javascript">
createHTML({
bug: "856319",
title: "Don't offer m=application unless createDataChannel is called first"
});
runTest(function () {
var pc = new mozRTCPeerConnection();
// necessary to circumvent bug 864109
var options = { mandatory: { OfferToReceiveAudio: true} };
pc.createOffer(function (offer) {
ok(!offer.sdp.contains("m=application"),
"m=application is not contained in the SDP");
SimpleTest.finish();
}, unexpectedCallbackAndFinish(new Error), options);
}, true);
</script>
</pre>
</body>
</html>