diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-15 03:34:42 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-15 03:34:42 +0000 |
commit | da4c7e7ed675c3bf405668739c3012d140856109 (patch) | |
tree | cdd868dba063fecba609a1d819de271f0d51b23e /testing/web-platform/tests/webrtc/RTCIceCandidate-constructor.html | |
parent | Adding upstream version 125.0.3. (diff) | |
download | firefox-da4c7e7ed675c3bf405668739c3012d140856109.tar.xz firefox-da4c7e7ed675c3bf405668739c3012d140856109.zip |
Adding upstream version 126.0.upstream/126.0
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/webrtc/RTCIceCandidate-constructor.html')
-rw-r--r-- | testing/web-platform/tests/webrtc/RTCIceCandidate-constructor.html | 10 |
1 files changed, 5 insertions, 5 deletions
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, |