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

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

Issue 2696083004: Do not commit: Remove testharness.js test results that are all-PASS, ignoring console output (Closed)
Patch Set: Created 3 years, 10 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/external/wpt/webrtc/rtcpeerconnection/rtcpeerconnection-constructor-expected.txt
diff --git a/third_party/WebKit/LayoutTests/external/wpt/webrtc/rtcpeerconnection/rtcpeerconnection-constructor-expected.txt b/third_party/WebKit/LayoutTests/external/wpt/webrtc/rtcpeerconnection/rtcpeerconnection-constructor-expected.txt
deleted file mode 100644
index 36e81dddafa87d18663734deadb791592deca391..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/external/wpt/webrtc/rtcpeerconnection/rtcpeerconnection-constructor-expected.txt
+++ /dev/null
@@ -1,86 +0,0 @@
-This is a testharness.js-based test.
-PASS RTCPeerConnection.length
-PASS new RTCPeerConnection()
-PASS new RTCPeerConnection(null)
-PASS new RTCPeerConnection(undefined)
-PASS new RTCPeerConnection({})
-PASS new RTCPeerConnection({ iceServers: null })
-PASS new RTCPeerConnection({ iceServers: undefined })
-PASS new RTCPeerConnection({ iceServers: [] })
-PASS new RTCPeerConnection({ iceServers: [{}] })
-PASS new RTCPeerConnection({ iceServers: [null] })
-PASS new RTCPeerConnection({ iceServers: [undefined] })
-PASS new RTCPeerConnection({ iceServers: [{ urls: "stun:stun1.example.net" }] })
-PASS new RTCPeerConnection({ iceServers: [{ urls: [] }] })
-PASS new RTCPeerConnection({ iceServers: [{ urls: ["stun:stun1.example.net"] }] })
-PASS new RTCPeerConnection({ iceServers: [{ urls: ["stun:stun1.example.net", "stun:stun2.example.net"] }] })
-PASS new RTCPeerConnection({ iceServers: [{ urls: "turns:turn.example.org", username: "user", credential: "cred" }] })
-PASS new RTCPeerConnection({ iceServers: [{ urls: "turn:turn.example.net", username: "user", credential: "cred" }] })
-PASS new RTCPeerConnection({ iceServers: [{ urls: "turns:turn.example.org", username: "", credential: "" }] })
-PASS new RTCPeerConnection({ iceServers: [{ urls: "turn:turn.example.net", username: "", credential: "" }] })
-PASS new RTCPeerConnection({ iceServers: [{ urls: ["turns:turn.example.org", "turn:turn.example.net"], username: "user", credential: "cred" }] })
-PASS new RTCPeerConnection({ iceServers: [{ urls: "stun:stun1.example.net", credentialType: "password" }] })
-PASS new RTCPeerConnection({ iceServers: [{ urls: "stun:stun1.example.net", credentialType: "token" }] })
-PASS new RTCPeerConnection({ iceServers: [{ urls: "turn:turn.example.net" }] })
-PASS new RTCPeerConnection({ iceServers: [{ urls: "turn:turn.example.net", username: "user" }] })
-PASS new RTCPeerConnection({ iceServers: [{ urls: "turn:turn.example.net", credential: "cred" }] })
-PASS new RTCPeerConnection({ iceServers: [{ urls: "turns:turn.example.org" }] })
-PASS new RTCPeerConnection({ iceServers: [{ urls: "turns:turn.example.org", username: "user" }] })
-PASS new RTCPeerConnection({ iceServers: [{ urls: "turns:turn.example.org", credential: "cred" }] })
-PASS new RTCPeerConnection({ iceServers: [{ urls: "relative-url" }] })
-PASS new RTCPeerConnection({ iceServers: [{ urls: "http://example.com" }] })
-PASS new RTCPeerConnection({ iceServers: [{ urls: [], credentialType: "password" }] })
-PASS new RTCPeerConnection({ iceServers: [{ urls: [], credentialType: "token" }] })
-FAIL new RTCPeerConnection({ iceServers: [{ urls: [], credentialType: "invalid" }] }) assert_throws: function "function () {
- eval(expr);
- }" did not throw
-FAIL new RTCPeerConnection({ iceServers: [{ url: "stun:stun1.example.net" }] }) 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" })
-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 RTCIceTransportPolicy.
-PASS new RTCPeerConnection({ iceTransports: "none" })
-PASS new RTCPeerConnection({ bundlePolicy: null })
-PASS new RTCPeerConnection({ bundlePolicy: undefined })
-PASS new RTCPeerConnection({ bundlePolicy: "balanced" })
-PASS new RTCPeerConnection({ bundlePolicy: "max-compat" })
-PASS new RTCPeerConnection({ bundlePolicy: "max-bundle" })
-PASS new RTCPeerConnection({ bundlePolicy: "invalid" })
-PASS new RTCPeerConnection({ rtcpMuxPolicy: null })
-PASS new RTCPeerConnection({ rtcpMuxPolicy: undefined })
-PASS new RTCPeerConnection({ rtcpMuxPolicy: "negotiate" })
-PASS new RTCPeerConnection({ rtcpMuxPolicy: "require" })
-PASS new RTCPeerConnection({ rtcpMuxPolicy: "invalid" })
-FAIL new RTCPeerConnection({ peerIdentity: toStringThrows }) assert_throws: function "function () {
- eval(expr);
- }" did not throw
-PASS new RTCPeerConnection({ certificates: null })
-PASS new RTCPeerConnection({ certificates: undefined })
-PASS new RTCPeerConnection({ certificates: [] })
-PASS new RTCPeerConnection({ certificates: [null] })
-PASS new RTCPeerConnection({ certificates: [undefined] })
-FAIL new RTCPeerConnection({ iceCandidatePoolSize: toNumberThrows }) assert_throws: function "function () {
- eval(expr);
- }" did not throw
-PASS new RTCPeerConnection({ certificates: [certificate] })
-PASS new RTCPeerConnection({ certificates: [expiredCertificate] })
-PASS localDescription initial value
-FAIL currentLocalDescription initial value assert_equals: expected (object) null but got (undefined) undefined
-FAIL pendingLocalDescription initial value assert_equals: expected (object) null but got (undefined) undefined
-PASS remoteDescription initial value
-FAIL currentRemoteDescription initial value assert_equals: expected (object) null but got (undefined) undefined
-FAIL pendingRemoteDescription initial value assert_equals: expected (object) null but got (undefined) undefined
-PASS signalingState initial value
-PASS iceGatheringState initial value
-PASS iceConnectionState initial value
-FAIL connectionState initial value assert_equals: expected (string) "new" but got (undefined) undefined
-FAIL canTrickleIceCandidates initial value assert_equals: expected (object) null but got (undefined) undefined
-Harness: the test ran to completion.
-

Powered by Google App Engine
This is Rietveld 408576698