Index: content/test/data/media/peerconnection-call.html |
diff --git a/content/test/data/media/peerconnection-call.html b/content/test/data/media/peerconnection-call.html |
index 0cfe6e9783d55025de13fe54bf6876c10260f5dd..034dc4bf43d621a46b94e6bb99c147f05a59e044 100644 |
--- a/content/test/data/media/peerconnection-call.html |
+++ b/content/test/data/media/peerconnection-call.html |
@@ -627,6 +627,7 @@ |
} |
function negotiateBetween(caller, callee) { |
+ console.log("Negotiating call..."); |
// Not stable = negotiation is ongoing. The behavior of re-negotiating while |
// a negotiation is ongoing is more or less undefined, so avoid this. |
if (caller.signalingState != 'stable') |
@@ -649,6 +650,7 @@ |
} |
function receiveOffer(offerSdp, caller, callee) { |
+ console.log("Receiving offer..."); |
offerSdp = transformRemoteSdp(offerSdp); |
var parsedOffer = new RTCSessionDescription({ type: 'offer', |
@@ -714,6 +716,7 @@ |
} |
function receiveAnswer(answerSdp, caller) { |
+ console.log("Receiving answer..."); |
answerSdp = transformRemoteSdp(answerSdp); |
var parsedAnswer = new RTCSessionDescription({ type: 'answer', |
sdp: answerSdp }); |
@@ -740,6 +743,7 @@ |
} |
function onRemoteStream(e, target) { |
+ console.log("Receiving remote stream..."); |
if (gTestWithoutMsid && e.stream.id != "default") { |
document.title = 'a default remote stream was expected but instead ' + |
e.stream.id + ' was received.'; |