| Index: third_party/WebKit/LayoutTests/fast/peerconnection/RTCPeerConnection.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/peerconnection/RTCPeerConnection.html b/third_party/WebKit/LayoutTests/fast/peerconnection/RTCPeerConnection.html
|
| index 8fca4d0672815000bc07cdfeff1271ef0a498c14..a8c2bac4eb2b0d765917bf80c2731f9e709e3a73 100644
|
| --- a/third_party/WebKit/LayoutTests/fast/peerconnection/RTCPeerConnection.html
|
| +++ b/third_party/WebKit/LayoutTests/fast/peerconnection/RTCPeerConnection.html
|
| @@ -45,6 +45,13 @@ shouldNotThrow("new RTCPeerConnection({iceServers:[], rtcpMuxPolicy:'negotiate'}
|
| shouldNotThrow("new RTCPeerConnection({iceServers:[], rtcpMuxPolicy:'require'});");
|
| shouldThrow("new RTCPeerConnection({iceServers:[], rtcpMuxPolicy:'foo'});");
|
|
|
| +shouldNotThrow("new RTCPeerConnection({iceCandidatePoolSize:0});");
|
| +shouldNotThrow("new RTCPeerConnection({iceCandidatePoolSize:1});");
|
| +shouldNotThrow("new RTCPeerConnection({iceCandidatePoolSize:5});");
|
| +shouldThrow("new RTCPeerConnection({iceCandidatePoolSize:-1});");
|
| +shouldThrow("new RTCPeerConnection({iceCandidatePoolSize:99999999});");
|
| +shouldThrow("new RTCPeerConnection({iceCandidatePoolSize:'foo'});");
|
| +
|
| // Deprecated.
|
| shouldNotThrow("new RTCPeerConnection(null, {mandatory:{valid_and_supported_1:1}});");
|
| shouldNotThrow("new RTCPeerConnection(null, {mandatory:{valid_and_supported_1:1, valid_and_supported_2:1}});");
|
|
|