gecko/dom/media/tests/mochitest/test_dataChannel_noOffer.html
Henrik Skupin 0d4ec91056 Bug 881658 - Fix handling of error and event callbacks in current WebRTC Mochitests. r=jsmith
--HG--
extra : rebase_source : 1d98e4ce4f339f757f60b98e49ab2e28a8e5912f
2013-06-13 19:43:45 +02:00

34 lines
883 B
HTML

<!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(), options);
}, true);
</script>
</pre>
</body>
</html>