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

Unified Diff: LayoutTests/fast/mediastream/RTCPeerConnection-localDescription.html

Issue 1010393002: Fix issue of localDescription and remoteDescription getter. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: ActiveDomObject. Created 5 years, 8 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
Index: LayoutTests/fast/mediastream/RTCPeerConnection-localDescription.html
diff --git a/LayoutTests/fast/mediastream/RTCPeerConnection-localDescription.html b/LayoutTests/fast/mediastream/RTCPeerConnection-localDescription.html
index f5775886c4618a29cec1b657a2f089c15fe9efd1..4b1878ed13be3b39d2e44d2c6eec6b9d07d13d36 100644
--- a/LayoutTests/fast/mediastream/RTCPeerConnection-localDescription.html
+++ b/LayoutTests/fast/mediastream/RTCPeerConnection-localDescription.html
@@ -38,6 +38,8 @@ function requestSucceeded1()
{
testPassed('requestSucceeded was called.');
+ sessionDescription = pc.localDescription;
+ shouldBeTrue('pc.localDescription === sessionDescription');
sessionDescription = new RTCSessionDescription({type:"answer", sdp:"remote"});
shouldNotThrow('pc.setLocalDescription(sessionDescription, requestSucceeded2, requestFailed2);');
}

Powered by Google App Engine
This is Rietveld 408576698