Skip to content

Commit

Permalink
Fix RTCPeerConnectionState references to dependent states
Browse files Browse the repository at this point in the history
  • Loading branch information
henbos committed Jan 22, 2020
1 parent 7e02bc9 commit dbb3790
Showing 1 changed file with 20 additions and 14 deletions.
34 changes: 20 additions & 14 deletions webrtc.html
Original file line number Diff line number Diff line change
Expand Up @@ -696,39 +696,45 @@ <h4><dfn>RTCPeerConnectionState</dfn> Enum</h4>
<tr>
<td data-tests="protocol/dtls-fingerprint-validation.html"><dfn data-idl>failed</dfn></td>
<td>The previous state doesn't apply and any
{{RTCIceTransport}}s or
{{RTCIceTransport}}s are in the
{{RTCIceTransportState/"failed"}} state or any
{{RTCDtlsTransport}}s are in the
<code class=fixme>"failed"</code> state.</td>
{{RTCDtlsTransportState/"failed"}} state.</td>
</tr>
<tr>
<td><dfn data-idl>disconnected</dfn></td>
<td>None of the previous states apply and any
{{RTCIceTransport}}s or
{{RTCDtlsTransport}}s are in the
<code class=fixme>"disconnected"</code> state.</td>
{{RTCIceTransport}}s are in the
{{RTCIceTransportState/"disconnected"}} state.</td>
</tr>
<tr>
<td><dfn data-idl>new</dfn></td>
<td>None of the previous states apply and all
{{RTCIceTransport}}s and
{{RTCDtlsTransport}}s are in the
<code class=fixme>"new"</code> or <code class=fixme>"closed"</code> state, or there are
no transports.</td>
{{RTCIceTransport}}s are in the {{RTCIceTransportState/"new"}}
or {{RTCIceTransportState/"closed"}} state and all
{{RTCDtlsTransport}}s are in the {{RTCDtlsTransportState/"new"}}
or {{RTCDtlsTransportState/"closed"}} state, or there are no
transports.</td>
</tr>
<tr>
<td data-tests="RTCPeerConnection-connectionState.https.html"><dfn data-idl>connecting</dfn></td>
<td>None of the previous states apply and all
{{RTCIceTransport}}s or
{{RTCIceTransport}}s are in the {{RTCIceTransportState/"new"}}
or {{RTCIceTransportState/"checking"}} state and all
{{RTCDtlsTransport}}s are in the
<code class=fixme>"new"</code>, <code class=fixme>"connecting"</code> or <code class=fixme>"checking"</code> state.</td>
{{RTCDtlsTransportState/"new"}} or
{{RTCDtlsTransportState/"connecting"}} state.</td>
</tr>
<tr>
<td data-tests="RTCPeerConnection-connectionState.https.html"><dfn data-idl>connected</dfn></td>
<td>None of the previous states apply and all
{{RTCIceTransport}}s and
{{RTCIceTransport}}s are in the
{{RTCIceTransportState/"connected"}},
{{RTCIceTransportState/"completed"}} or
{{RTCIceTransportState/"closed"}} state and all
{{RTCDtlsTransport}}s are in the
<code class=fixme>"connected"</code>, <code class=fixme>"completed"</code> or
<code class=fixme>"closed"</code> state.</td>
{{RTCDtlsTransportState/"connected"}} or
{{RTCDtlsTransportState/"closed"}} state.</td>
</tr>
</tbody>
</table>
Expand Down

0 comments on commit dbb3790

Please sign in to comment.