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

Side by Side Diff: LayoutTests/fast/mediastream/constructors-expected.txt

Issue 10969068: Merge 128982 - MediaStream API: Rename the RTCIceServer uri parameter to url. (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1271/
Patch Set: Created 8 years, 3 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 unified diff | Download patch
OLDNEW
1 Tests the JSEP PeerConnection related constructors. 1 Tests the JSEP PeerConnection related constructors.
2 2
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ". 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
4 4
5 5
6 PASS typeof webkitPeerConnection00 === 'function' is true 6 PASS typeof webkitPeerConnection00 === 'function' is true
7 PASS typeof SessionDescription === 'function' is true 7 PASS typeof SessionDescription === 'function' is true
8 PASS typeof IceCandidate === 'function' is true 8 PASS typeof IceCandidate === 'function' is true
9 PASS typeof webkitRTCPeerConnection === 'function' is true 9 PASS typeof webkitRTCPeerConnection === 'function' is true
10 PASS typeof RTCSessionDescription === 'function' is true 10 PASS typeof RTCSessionDescription === 'function' is true
11 PASS typeof RTCIceCandidate === 'function' is true 11 PASS typeof RTCIceCandidate === 'function' is true
12 PASS webkitPeerConnection00() threw exception TypeError: DOM object constructor cannot be called as a function.. 12 PASS webkitPeerConnection00() threw exception TypeError: DOM object constructor cannot be called as a function..
13 PASS SessionDescription() threw exception TypeError: DOM object constructor cann ot be called as a function.. 13 PASS SessionDescription() threw exception TypeError: DOM object constructor cann ot be called as a function..
14 PASS IceCandidate() threw exception TypeError: DOM object constructor cannot be called as a function.. 14 PASS IceCandidate() threw exception TypeError: DOM object constructor cannot be called as a function..
15 PASS webkitRTCPeerConnection() threw exception TypeError: DOM object constructor cannot be called as a function.. 15 PASS webkitRTCPeerConnection() threw exception TypeError: DOM object constructor cannot be called as a function..
16 PASS RTCSessionDescription() threw exception TypeError: DOM object constructor c annot be called as a function.. 16 PASS RTCSessionDescription() threw exception TypeError: DOM object constructor c annot be called as a function..
17 PASS RTCIceCandidate() threw exception TypeError: DOM object constructor cannot be called as a function.. 17 PASS RTCIceCandidate() threw exception TypeError: DOM object constructor cannot be called as a function..
18 PASS new webkitPeerConnection00('STUN foobar.com:12345', function(){}); did not throw exception. 18 PASS new webkitPeerConnection00('STUN foobar.com:12345', function(){}); did not throw exception.
19 PASS new SessionDescription(''); did not throw exception. 19 PASS new SessionDescription(''); did not throw exception.
20 PASS new IceCandidate('', ''); did not throw exception. 20 PASS new IceCandidate('', ''); did not throw exception.
21 PASS new webkitRTCPeerConnection({iceServers:[{uri:'stun://foobar.com:12345'}]}, null); did not throw exception. 21 PASS new webkitRTCPeerConnection({iceServers:[{url:'stun://foobar.com:12345'}]}, null); did not throw exception.
22 PASS new RTCSessionDescription({type:'offer',sdp:'foobar'}); did not throw excep tion. 22 PASS new RTCSessionDescription({type:'offer',sdp:'foobar'}); did not throw excep tion.
23 PASS new RTCIceCandidate({candidate:'foo'}); did not throw exception. 23 PASS new RTCIceCandidate({candidate:'foo'}); did not throw exception.
24 PASS successfullyParsed is true 24 PASS successfullyParsed is true
25 25
26 TEST COMPLETE 26 TEST COMPLETE
27 27
OLDNEW
« no previous file with comments | « LayoutTests/fast/mediastream/constructors.html ('k') | Source/WebCore/Modules/mediastream/RTCPeerConnection.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698