summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/webrtc/RTCIceCandidate-constructor.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/webrtc/RTCIceCandidate-constructor.html')
-rw-r--r--testing/web-platform/tests/webrtc/RTCIceCandidate-constructor.html10
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,