Web/API/RTCIceCandidatePairStats/writable

From Get docs

ObsoleteThis feature is obsolete. Although it may still work in some browsers, its use is discouraged since it could be removed at any time. Try to avoid using it.


The obsolete RTCIceCandidatePairStats property writable reports whether or not the connection described by the candidate pair is writable.

Syntax

isWritable = rtcIceCandidatePairStats.writable;

Value

A Boolean value which is true if the connection described by this candidate pair has received acknowledgement of receipt (ACK) for at least one ICE request and that STUN consent hasn't expired.

Note: This property was removed from the specification in early 2017 because you can determine whether or not an incoming ICE request is available to read by checking to see if responsesReceived is greater than 0 and that the time specified by consentExpiredTimestamp has not passed:

if (icpStats.responsesReceived > 0
    && icpStats.consentExpiredTimestamp < performance.now()) {
  /* at least one ICE response has been received */
}

Browser compatibility

Update compatibility data on GitHub

Desktop Mobile
Chrome Edge Firefox Internet Explorer Opera Safari Android webview Chrome for Android Firefox for Android Opera for Android Safari on iOS Samsung Internet

writable

Non-standard'

Chrome Full support Yes

Notes'

Full support Yes

Notes'

Notes' Chrome does not currently use the specification's algorithm to determine the value of writable; it may not match the behavior of other browsers.

Edge Full support ≤79

Notes'

Full support ≤79

Notes'

Notes' Edge does not currently use the specification's algorithm to determine the value of writable; it may not match the behavior of other browsers.

Firefox

Full support 56

IE

No support No

Opera

?

Safari

?

WebView Android

Full support Yes

Chrome Android Full support Yes

Notes'

Full support Yes

Notes'

Notes' Chrome does not currently use the specification's algorithm to determine the value of writable; it may not match the behavior of other browsers.

Firefox Android

Full support 56

Opera Android

?

Safari iOS

?

Samsung Internet Android Full support Yes

Notes'

Full support Yes

Notes'

Notes' Samsung Internet does not currently use the specification's algorithm to determine the value of writable; it may not match the behavior of other browsers.

Legend

Full support  
Full support
No support  
No support
Compatibility unknown  
Compatibility unknown
Non-standard. Expect poor cross-browser support.'
Non-standard. Expect poor cross-browser support.
See implementation notes.'
See implementation notes.