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

Side by Side Diff: third_party/WebKit/LayoutTests/external/wpt/webrtc/rtcpeerconnection/rtcpeerconnection-constructor-expected.txt

Issue 2721163002: Add support for RTCConfiguration.iceCandidatePoolSize. (Closed)
Patch Set: Merge with master Created 3 years, 9 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 This is a testharness.js-based test. 1 This is a testharness.js-based test.
2 Found 73 tests; 61 PASS, 12 FAIL, 0 TIMEOUT, 0 NOTRUN. 2 Found 73 tests; 62 PASS, 11 FAIL, 0 TIMEOUT, 0 NOTRUN.
3 PASS RTCPeerConnection.length 3 PASS RTCPeerConnection.length
4 PASS new RTCPeerConnection() 4 PASS new RTCPeerConnection()
5 PASS new RTCPeerConnection(null) 5 PASS new RTCPeerConnection(null)
6 PASS new RTCPeerConnection(undefined) 6 PASS new RTCPeerConnection(undefined)
7 PASS new RTCPeerConnection({}) 7 PASS new RTCPeerConnection({})
8 PASS new RTCPeerConnection({ iceServers: null }) 8 PASS new RTCPeerConnection({ iceServers: null })
9 PASS new RTCPeerConnection({ iceServers: undefined }) 9 PASS new RTCPeerConnection({ iceServers: undefined })
10 PASS new RTCPeerConnection({ iceServers: [] }) 10 PASS new RTCPeerConnection({ iceServers: [] })
11 PASS new RTCPeerConnection({ iceServers: [{}] }) 11 PASS new RTCPeerConnection({ iceServers: [{}] })
12 PASS new RTCPeerConnection({ iceServers: [null] }) 12 PASS new RTCPeerConnection({ iceServers: [null] })
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 PASS new RTCPeerConnection({ rtcpMuxPolicy: "require" }) 60 PASS new RTCPeerConnection({ rtcpMuxPolicy: "require" })
61 PASS new RTCPeerConnection({ rtcpMuxPolicy: "invalid" }) 61 PASS new RTCPeerConnection({ rtcpMuxPolicy: "invalid" })
62 FAIL new RTCPeerConnection({ peerIdentity: toStringThrows }) assert_throws: func tion "function () { 62 FAIL new RTCPeerConnection({ peerIdentity: toStringThrows }) assert_throws: func tion "function () {
63 eval(expr); 63 eval(expr);
64 }" did not throw 64 }" did not throw
65 PASS new RTCPeerConnection({ certificates: null }) 65 PASS new RTCPeerConnection({ certificates: null })
66 PASS new RTCPeerConnection({ certificates: undefined }) 66 PASS new RTCPeerConnection({ certificates: undefined })
67 PASS new RTCPeerConnection({ certificates: [] }) 67 PASS new RTCPeerConnection({ certificates: [] })
68 PASS new RTCPeerConnection({ certificates: [null] }) 68 PASS new RTCPeerConnection({ certificates: [null] })
69 PASS new RTCPeerConnection({ certificates: [undefined] }) 69 PASS new RTCPeerConnection({ certificates: [undefined] })
70 FAIL new RTCPeerConnection({ iceCandidatePoolSize: toNumberThrows }) assert_thro ws: function "function () { 70 PASS new RTCPeerConnection({ iceCandidatePoolSize: toNumberThrows })
71 eval(expr);
72 }" did not throw
73 PASS new RTCPeerConnection({ certificates: [certificate] }) 71 PASS new RTCPeerConnection({ certificates: [certificate] })
74 PASS new RTCPeerConnection({ certificates: [expiredCertificate] }) 72 PASS new RTCPeerConnection({ certificates: [expiredCertificate] })
75 PASS localDescription initial value 73 PASS localDescription initial value
76 FAIL currentLocalDescription initial value assert_equals: expected (object) null but got (undefined) undefined 74 FAIL currentLocalDescription initial value assert_equals: expected (object) null but got (undefined) undefined
77 FAIL pendingLocalDescription initial value assert_equals: expected (object) null but got (undefined) undefined 75 FAIL pendingLocalDescription initial value assert_equals: expected (object) null but got (undefined) undefined
78 PASS remoteDescription initial value 76 PASS remoteDescription initial value
79 FAIL currentRemoteDescription initial value assert_equals: expected (object) nul l but got (undefined) undefined 77 FAIL currentRemoteDescription initial value assert_equals: expected (object) nul l but got (undefined) undefined
80 FAIL pendingRemoteDescription initial value assert_equals: expected (object) nul l but got (undefined) undefined 78 FAIL pendingRemoteDescription initial value assert_equals: expected (object) nul l but got (undefined) undefined
81 PASS signalingState initial value 79 PASS signalingState initial value
82 PASS iceGatheringState initial value 80 PASS iceGatheringState initial value
83 PASS iceConnectionState initial value 81 PASS iceConnectionState initial value
84 FAIL connectionState initial value assert_equals: expected (string) "new" but go t (undefined) undefined 82 FAIL connectionState initial value assert_equals: expected (string) "new" but go t (undefined) undefined
85 FAIL canTrickleIceCandidates initial value assert_equals: expected (object) null but got (undefined) undefined 83 FAIL canTrickleIceCandidates initial value assert_equals: expected (object) null but got (undefined) undefined
86 Harness: the test ran to completion. 84 Harness: the test ran to completion.
87 85
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698