Index: LayoutTests/fast/mediastream/RTCPeerConnection.html |
diff --git a/LayoutTests/fast/mediastream/RTCPeerConnection.html b/LayoutTests/fast/mediastream/RTCPeerConnection.html |
index 74e2e4c89dca2fbb2d3bb65476f52a73c370abfc..c71c8165e7a8ef7726991fe0489dd5ba1678e83c 100644 |
--- a/LayoutTests/fast/mediastream/RTCPeerConnection.html |
+++ b/LayoutTests/fast/mediastream/RTCPeerConnection.html |
@@ -21,6 +21,9 @@ 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);"); |