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

Unified Diff: LayoutTests/fast/mediastream/RTCPeerConnection-remoteDescription.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-remoteDescription.html
diff --git a/LayoutTests/fast/mediastream/RTCPeerConnection-remoteDescription.html b/LayoutTests/fast/mediastream/RTCPeerConnection-remoteDescription.html
index 06d84bb73efaee4c856cbde775693679717dc156..845e838c37ade3b0365d596fa77bcedfe6a2c0a3 100644
--- a/LayoutTests/fast/mediastream/RTCPeerConnection-remoteDescription.html
+++ b/LayoutTests/fast/mediastream/RTCPeerConnection-remoteDescription.html
@@ -38,6 +38,8 @@ function requestSucceeded1()
{
testPassed('requestSucceeded was called.');
+ sessionDescription = pc.remoteDescription;
+ shouldBeTrue('pc.remoteDescription === sessionDescription');
sessionDescription = new RTCSessionDescription({type:"offer", sdp:"local"});
shouldNotThrow('pc.setRemoteDescription(sessionDescription, requestSucceeded2, requestFailed2);');
}

Powered by Google App Engine
This is Rietveld 408576698