Skip to content

Commit

Permalink
Fix some more autolinks
Browse files Browse the repository at this point in the history
  • Loading branch information
dontcallmedom committed Jan 8, 2021
1 parent e709ce8 commit f3e5584
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions index.html
Expand Up @@ -178,7 +178,7 @@ <h3>
};
</pre>
<p>
Let [[\HeaderExtensionsToOffer]] be an internal slot of the RTCRtpTransceiver,
Let [[\HeaderExtensionsToOffer]] be an internal slot of the {{RTCRtpTransceiver}},
initialized to the platform-specific list of implemented RTP header extensions.
The direction
attribute for all extensions that are mandatory to use MUST be initialized to
Expand Down Expand Up @@ -236,7 +236,7 @@ <h2>Modifications to existing procedures</h2>
<section>
<h2>Methods</h2>
<dl>
<dt>setOfferedRtpHeaderExtensions</dt>
<dt><dfn data-dfn-for=RTCRtpTransceiver>setOfferedRtpHeaderExtensions</dfn></dt>
<dd>
Execute the following steps:
<ol>
Expand All @@ -245,21 +245,21 @@ <h2>Methods</h2>
For each extension <var>ext</var> in <var>extlist</var>, do the following:
<ol>
<li>
If <var>ext</var>'s "uri" value is missing, [=exception/throw=] a TypeError.
If <var>ext</var>.{{RTCRtpHeaderExtensionParameters/uri}} value is missing, [=exception/throw=] a {{TypeError}}.
</li>
<li>If <var>ext</var>'s "uri" value is not present in
[[\HeaderExtensionsToOffer]], [=exception/throw=] a NotSupported error.
<li>If <var>ext</var>.{{RTCRtpHeaderExtensionParameters/uri}} value is not present in
[[\HeaderExtensionsToOffer]], [=exception/throw=] a {{NotSupportedError}}.
</li>
<li>
Let <var>entry</var> be the entry with the same "uri" value in
Let <var>entry</var> be the entry with the same {{RTCRtpHeaderExtensionParameters/uri}} value in
[[\HeaderExtensionsToOffer]].
</li>
<li>If <var>ext</var>'s "direction" field is not "sendrecv", and "uri"
<li>If <var>ext</var>'s "direction" field is not "sendrecv", and {{RTCRtpHeaderExtensionParameters/uri}}
indicates a mandatory-to-use attribute that is required to be both
sent and received, [=exception/throw=] an IllegalArgument error.
sent and received, [=exception/throw=] an {{IllegalArgumentError}}.
</li>
<li>if <var>ext</var>'s "direction" field is "stopped", and "uri" indicates
a mandatory-to-implement extension, [=exception/throw=] an IllegalArgument error.
<li>if <var>ext</var>'s "direction" field is "stopped", and {{RTCRtpHeaderExtensionParameters/uri}} indicates
a mandatory-to-implement extension, [=exception/throw=] an {{IllegalArgumentError}}.
</li>
<li>
Set the "direction" field of <var>entry</var> to <var>ext</var>'s
Expand Down

0 comments on commit f3e5584

Please sign in to comment.