| Index: LayoutTests/fast/mediastream/RTCPeerConnection.html
|
| diff --git a/LayoutTests/fast/mediastream/RTCPeerConnection.html b/LayoutTests/fast/mediastream/RTCPeerConnection.html
|
| index 74e2e4c89dca2fbb2d3bb65476f52a73c370abfc..ef61d8c3d14fa36e8fb43ab5b4b332a3e462f374 100644
|
| --- a/LayoutTests/fast/mediastream/RTCPeerConnection.html
|
| +++ b/LayoutTests/fast/mediastream/RTCPeerConnection.html
|
| @@ -21,8 +21,10 @@ shouldNotThrow("new webkitRTCPeerConnection({iceServers:[{url:'turn:foo.com', cr
|
| shouldNotThrow("new webkitRTCPeerConnection({iceServers:[{url:'turn:foo.com', credential:'x'},{url:'stun:bar.com'}]}, null);");
|
| shouldNotThrow("new webkitRTCPeerConnection({iceServers:[{urls:'stun:foo.com'}]}, null);");
|
| shouldNotThrow("new webkitRTCPeerConnection({iceServers:[{urls:['stun:foo.com', 'turn:foo.com']}]}, null);");
|
| +shouldNotThrow("new webkitRTCPeerConnection({iceServers:undefined}, null);");
|
| +shouldNotThrow("new webkitRTCPeerConnection({}, null);");
|
| +shouldThrow("new webkitRTCPeerConnection({iceServers:null}, null);");
|
|
|
| -shouldThrow("new webkitRTCPeerConnection({fooServers:[]}, null);");
|
| shouldThrow("new webkitRTCPeerConnection({iceServers:true}, null);");
|
| shouldThrow("new webkitRTCPeerConnection({iceServers:[1, 2, 3]}, null);");
|
| shouldThrow("new webkitRTCPeerConnection({iceServers:[{}]}, null);");
|
|
|