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

Side by Side Diff: LayoutTests/fast/rtcpeerconnection/RTCPeerConnection-expected.txt

Issue 650063002: Move MediaStream and MediaStreamTrack implementation from modules/mediastream to core/mediastream. Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebased. Created 6 years, 2 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 RTCPeerConnection constructor. 1 Tests the RTCPeerConnection constructor.
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 new webkitRTCPeerConnection(null); did not throw exception. 6 PASS new webkitRTCPeerConnection(null); did not throw exception.
7 PASS new webkitRTCPeerConnection(null, null); did not throw exception. 7 PASS new webkitRTCPeerConnection(null, null); did not throw exception.
8 PASS new webkitRTCPeerConnection(undefined); did not throw exception. 8 PASS new webkitRTCPeerConnection(undefined); did not throw exception.
9 PASS new webkitRTCPeerConnection(undefined, undefined); did not throw exception. 9 PASS new webkitRTCPeerConnection(undefined, undefined); did not throw exception.
10 PASS new webkitRTCPeerConnection(); threw exception TypeError: Failed to constru ct 'RTCPeerConnection': 1 argument required, but only 0 present.. 10 PASS new webkitRTCPeerConnection(); threw exception TypeError: Failed to constru ct 'RTCPeerConnection': 1 argument required, but only 0 present..
(...skipping 27 matching lines...) Expand all
38 PASS new webkitRTCPeerConnection(null, {optional:{valid_and_supported_1:0}}); th rew exception TypeError: Failed to construct 'RTCPeerConnection': Malformed cons traints object.. 38 PASS new webkitRTCPeerConnection(null, {optional:{valid_and_supported_1:0}}); th rew exception TypeError: Failed to construct 'RTCPeerConnection': Malformed cons traints object..
39 PASS new webkitRTCPeerConnection(null, {optional:[{valid_and_supported_1:0,valid _and_supported_2:0}]}); threw exception TypeError: Failed to construct 'RTCPeerC onnection': Malformed constraints object.. 39 PASS new webkitRTCPeerConnection(null, {optional:[{valid_and_supported_1:0,valid _and_supported_2:0}]}); threw exception TypeError: Failed to construct 'RTCPeerC onnection': Malformed constraints object..
40 PASS new webkitRTCPeerConnection(null, {optional:[{invalid:0}]}); threw exceptio n NotSupportedError: Failed to construct 'RTCPeerConnection': Failed to initiali ze native PeerConnection.. 40 PASS new webkitRTCPeerConnection(null, {optional:[{invalid:0}]}); threw exceptio n NotSupportedError: Failed to construct 'RTCPeerConnection': Failed to initiali ze native PeerConnection..
41 PASS new webkitRTCPeerConnection(null, {valid_and_supported_1:1}); threw excepti on TypeError: Failed to construct 'RTCPeerConnection': Malformed constraints obj ect.. 41 PASS new webkitRTCPeerConnection(null, {valid_and_supported_1:1}); threw excepti on TypeError: Failed to construct 'RTCPeerConnection': Malformed constraints obj ect..
42 PASS new webkitRTCPeerConnection(null, {valid_but_unsupported_1:1}); threw excep tion TypeError: Failed to construct 'RTCPeerConnection': Malformed constraints o bject.. 42 PASS new webkitRTCPeerConnection(null, {valid_but_unsupported_1:1}); threw excep tion TypeError: Failed to construct 'RTCPeerConnection': Malformed constraints o bject..
43 PASS new webkitRTCPeerConnection(null, {valid_and_supported_2:1, mandatory:{vali d_and_supported_1:1}}); threw exception TypeError: Failed to construct 'RTCPeerC onnection': Malformed constraints object.. 43 PASS new webkitRTCPeerConnection(null, {valid_and_supported_2:1, mandatory:{vali d_and_supported_1:1}}); threw exception TypeError: Failed to construct 'RTCPeerC onnection': Malformed constraints object..
44 PASS successfullyParsed is true 44 PASS successfullyParsed is true
45 45
46 TEST COMPLETE 46 TEST COMPLETE
47 47
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698