Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(354)

Unified Diff: content/test/data/media/peerconnection-call.html

Issue 478543004: Reland WebRtcBrowserTest.CanSetupVideoCallAndDisableLocalVideo (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Disabled under TSAN 2 due to http://crbug.com/408006. Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/browser/media/webrtc_browsertest.cc ('k') | content/test/data/media/webrtc_test_utilities.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 5d007f8f44b42c44d3915d5aaea87b001faecda8..3ee42ec5686a5f1d1a250736385dad0ffc5f0860 100644
--- a/content/test/data/media/peerconnection-call.html
+++ b/content/test/data/media/peerconnection-call.html
@@ -58,6 +58,20 @@
waitForVideo('remote-view-2');
}
+ // Test that we can setup a call with a video track and that the remote peer
+ // receives black frames if the local video track is disabled.
+ function callAndDisableLocalVideo(constraints) {
+ createConnections(null);
+ navigator.webkitGetUserMedia(constraints,
+ addStreamToBothConnectionsAndNegotiate, printGetUserMediaError);
+ detectVideoPlaying('remote-view-1',
+ function () {
+ assertEquals(gLocalStream.getVideoTracks().length, 1);
+ gLocalStream.getVideoTracks()[0].enabled = false;
+ waitForBlackVideo('remote-view-1');
+ });
+ }
+
// Test that we can setup call with an audio and video track and check that
// the video resolution is as expected.
function callAndExpectResolution(constraints,
« no previous file with comments | « content/browser/media/webrtc_browsertest.cc ('k') | content/test/data/media/webrtc_test_utilities.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698