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

Unified Diff: third_party/WebKit/LayoutTests/imported/wpt/webrtc/rtcpeerconnection/rtcpeerconnection-constructor-expected.txt

Issue 2447033002: Support RTCConfiguration iceTransportPolicy (Closed)
Patch Set: update expectations Created 4 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/imported/wpt/webrtc/rtcpeerconnection/rtcpeerconnection-constructor-expected.txt
diff --git a/third_party/WebKit/LayoutTests/imported/wpt/webrtc/rtcpeerconnection/rtcpeerconnection-constructor-expected.txt b/third_party/WebKit/LayoutTests/imported/wpt/webrtc/rtcpeerconnection/rtcpeerconnection-constructor-expected.txt
index e8b4d59550e1cece02c3458b90d1feb848ec594c..4b9ad50bbc39ce402a32fb51d7a81508f45c09ff 100644
--- a/third_party/WebKit/LayoutTests/imported/wpt/webrtc/rtcpeerconnection/rtcpeerconnection-constructor-expected.txt
+++ b/third_party/WebKit/LayoutTests/imported/wpt/webrtc/rtcpeerconnection/rtcpeerconnection-constructor-expected.txt
@@ -51,19 +51,15 @@ FAIL new RTCPeerConnection({ iceServers: [{ urls: [], credentialType: "invalid"
FAIL new RTCPeerConnection({ iceServers: [{ url: "stun:stun1.example.net" }] }) assert_throws: function "function () {
eval(expr);
}" did not throw
-FAIL new RTCPeerConnection({ iceTransportPolicy: null }) assert_throws: function "function () {
- eval(expr);
- }" did not throw
+PASS new RTCPeerConnection({ iceTransportPolicy: null })
PASS new RTCPeerConnection({ iceTransportPolicy: undefined })
PASS new RTCPeerConnection({ iceTransportPolicy: "relay" })
PASS new RTCPeerConnection({ iceTransportPolicy: "all" })
-FAIL new RTCPeerConnection({ iceTransportPolicy: "invalid" }) assert_throws: function "function () {
- eval(expr);
- }" did not throw
+PASS new RTCPeerConnection({ iceTransportPolicy: "invalid" })
FAIL new RTCPeerConnection({ iceTransportPolicy: "none" }) assert_throws: function "function () {
eval(expr);
}" did not throw
-FAIL new RTCPeerConnection({ iceTransports: "invalid" }) Failed to construct 'RTCPeerConnection': The provided value 'invalid' is not a valid enum value of type RTCIceTransports.
+FAIL new RTCPeerConnection({ iceTransports: "invalid" }) Failed to construct 'RTCPeerConnection': The provided value 'invalid' is not a valid enum value of type RTCIceTransportPolicy.
PASS new RTCPeerConnection({ iceTransports: "none" })
PASS new RTCPeerConnection({ bundlePolicy: null })
PASS new RTCPeerConnection({ bundlePolicy: undefined })

Powered by Google App Engine
This is Rietveld 408576698