Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix respec errors #45

Merged
merged 1 commit into from Jul 1, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
24 changes: 6 additions & 18 deletions index.html
Expand Up @@ -40,18 +40,6 @@ <h2>Introduction</h2>
ECMAScript Bindings defined in the Web IDL specification [[WEBIDL]], as
this specification uses that specification and terminology.</p>
</section>
<section>
<h2>Terminology</h2>
<p>The {{RTCDtlsTransport}} is defined in [[WEBRTC]].
The {{RTCIceTransport}} interface, the {{RTCIceTransport/getLocalParameters()}} method,
the <dfn><code>icecandidate</code></dfn>, <dfn><code>icecandidateerror</code></dfn>,
{{RTCPeerConnectionIceEvent}} and {{RTCPeerConnectionIceErrorEvent}} events,
the {{RTCIceCandidate}} interface, {{RTCIceCandidateInit}} and {{RTCIceServer}} dictionaries, the
{{RTCIceTransportPolicy}}, {{RTCIceTransportState}} and
{{RTCIceRole}} enums and the <dfn>[[\IceRole]]</dfn>, <dfn>[[\IceTransportState]]</dfn>,
<dfn>[[\IceGathererState]]</dfn> and <dfn>[[\SelectedCandidatePair]]</dfn> internal slots
are defined in [[!WEBRTC]] Section 5.6.</p>
</section>
<section id="rtcicetransport*">
<h2>{{RTCIceTransport}} Extensions</h2>
<p>The {{RTCIceTransport}} extensions allow construction of
Expand Down Expand Up @@ -142,8 +130,8 @@ <h2>Constructors</h2>
Create an {{RTCIceTransport}} <var>transport</var>.
</li>
<li>
Initialize <var>transport</var>'s <a>[[\IceTransportState]]</a>, <a>[[\IceGathererState]]</a>,
<a>[[\SelectedCandidatePair]]</a> and <a>[[\IceRole]]</a> internal slots as specified in
Initialize <var>transport</var>.{{RTCIceTransport/[[IceTransportState]]}}, {{RTCIceTransport/[[IceGathererState]]}},
{{RTCIceTransport/[[SelectedCandidatePair]]}} and {{RTCIceTransport/[[IceRole]]}} internal slots as specified in
[[!WEBRTC]] Section 5.6.
</li>
<li>
Expand All @@ -166,13 +154,13 @@ <h2>Attributes</h2>
<dt><dfn>onerror</dfn> of type {{EventHandler}}</dt>
<dd>
<p>This event handler, of event handler event type
{{icecandidateerror}}, MUST be fired if an error occurs in the gathering of ICE
{{RTCIceTransport/icecandidateerror}}, MUST be fired if an error occurs in the gathering of ICE
candidates (such as if TURN credentials are invalid).</p>
</dd>
<dt><dfn>onicecandidate</dfn> of type {{EventHandler}}</dt>
<dd>
<p>This event handler utilizes the event handler event type
{{icecandidate}}.
{{RTCIceTransport/icecandidate}}.
</dd>
</dl>
</section>
Expand Down Expand Up @@ -439,14 +427,14 @@ <h2>Event summary</h2>
</thead>
<tbody>
<tr>
<th scope=row><code>icecandidateerror</code></th>
<th scope=row><dfn data-dfn-for="RTCIceTransport" data-dfn-type=event>icecandidateerror</dfn></th>
<td>{{RTCPeerConnectionIceErrorEvent}}</td>
<td>The {{RTCIceTransport}} object has experienced an ICE
gathering failure (such as an authentication failure with TURN
credentials).</td>
</tr>
<tr>
<th scope=row><code>icecandidate</code></td>
<th scope=row><dfn data-dfn-for="RTCIceTransport" data-dfn-type=event>icecandidate</dfn></td>
<td>{{RTCPeerConnectionIceEvent}}</td>
<td>A new {{RTCIceCandidate}} is made available to the
script.</td>
Expand Down