| 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 386214c353f0a6339800051d7da3b4910963c231..8fca4d0672815000bc07cdfeff1271ef0a498c14 100644
|
| --- a/third_party/WebKit/LayoutTests/fast/peerconnection/RTCPeerConnection.html
|
| +++ b/third_party/WebKit/LayoutTests/fast/peerconnection/RTCPeerConnection.html
|
| @@ -17,10 +17,11 @@ shouldThrow("new RTCPeerConnection('');");
|
|
|
| shouldNotThrow("new RTCPeerConnection({iceServers:[]});");
|
| shouldNotThrow("new RTCPeerConnection({iceServers:[{url:'stun:foo.com'}]});");
|
| -shouldNotThrow("new RTCPeerConnection({iceServers:[{url:'turn:foo.com', credential:'x'}]});");
|
| -shouldNotThrow("new RTCPeerConnection({iceServers:[{url:'turn:foo.com', credential:'x'},{url:'stun:bar.com'}]});");
|
| +shouldNotThrow("new RTCPeerConnection({iceServers:[{url:'turn:foo.com', username:'x', credential:'x'}]});");
|
| +shouldNotThrow("new RTCPeerConnection({iceServers:[{url:'turn:foo.com', username:'x', credential:'x'},{url:'stun:bar.com'}]});");
|
| shouldNotThrow("new RTCPeerConnection({iceServers:[{urls:'stun:foo.com'}]});");
|
| -shouldNotThrow("new RTCPeerConnection({iceServers:[{urls:['stun:foo.com', 'turn:foo.com']}]});");
|
| +shouldNotThrow("new RTCPeerConnection({iceServers:[{urls:['stun:foo.com', 'turn:foo.com'], username:'x', credential:'x'}]});");
|
| +shouldThrow("new RTCPeerConnection({iceServers:[{urls:['stun:foo.com', 'turn:foo.com']}]});");
|
|
|
| shouldNotThrow("new RTCPeerConnection({fooServers:[]});");
|
| shouldThrow("new RTCPeerConnection({iceServers:true});");
|
|
|