From d8bbc7858622b6d9c278469aab701ca0b609cddf Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 15 May 2024 05:35:49 +0200 Subject: Merging upstream version 126.0. Signed-off-by: Daniel Baumann --- .../web-platform/tests/webrtc/RTCIceCandidate-constructor.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'testing/web-platform/tests/webrtc/RTCIceCandidate-constructor.html') diff --git a/testing/web-platform/tests/webrtc/RTCIceCandidate-constructor.html b/testing/web-platform/tests/webrtc/RTCIceCandidate-constructor.html index 66d6962079..b760c7b05a 100644 --- a/testing/web-platform/tests/webrtc/RTCIceCandidate-constructor.html +++ b/testing/web-platform/tests/webrtc/RTCIceCandidate-constructor.html @@ -57,7 +57,7 @@ }, `new RTCIceCandidate({ candidate: '' })`); test(t => { - // Throws because the candidate field is not nullable + // Throws because both sdpMid and sdpMLineIndex are null by default assert_throws_js(TypeError, () => new RTCIceCandidate({ candidate: null @@ -116,15 +116,15 @@ test(t => { const candidate = new RTCIceCandidate({ - candidate: '', + candidate: null, sdpMLineIndex: 0 }); - assert_equals(candidate.candidate, '', 'candidate'); + assert_equals(candidate.candidate, 'null', 'candidate'); assert_equals(candidate.sdpMid, null, 'sdpMid', 'sdpMid'); assert_equals(candidate.sdpMLineIndex, 0, 'sdpMLineIndex'); assert_equals(candidate.usernameFragment, null, 'usernameFragment'); - }, `new RTCIceCandidate({ candidate: '', sdpMLineIndex: 0 }`); + }, `new RTCIceCandidate({ candidate: null, sdpMLineIndex: 0 }`); test(t => { const candidate = new RTCIceCandidate({ @@ -138,7 +138,7 @@ assert_equals(candidate.usernameFragment, null, 'usernameFragment'); }, 'new RTCIceCandidate({ ... }) with valid candidate string and sdpMid'); - test(t =>{ + test(t => { // candidate string is not validated in RTCIceCandidate const candidate = new RTCIceCandidate({ candidate: arbitraryString, -- cgit v1.2.3