Skip to content

Commit

Permalink
Fix: Missing tasks in parallel steps
Browse files Browse the repository at this point in the history
Fixes #3032.
  • Loading branch information
eladalon1983 committed Jan 30, 2025
1 parent 23d37fc commit f8a6dc7
Showing 1 changed file with 29 additions and 16 deletions.
45 changes: 29 additions & 16 deletions webrtc.html
Original file line number Diff line number Diff line change
Expand Up @@ -7326,7 +7326,9 @@ <h2>
</li>
<li>
<p>
Resolve <var>p</var> with <var>certificate</var>.
[=Queue a global task=] on the [=networking task source=] given the
current realm's [=global object=] as <var>global</var> to [=resolve=]
<var>p</var> with <var>certificate</var>.
</p>
</li>
</ol>
Expand Down Expand Up @@ -9418,11 +9420,18 @@ <h2>
determine if <var>withTrack</var> can be sent
immediately by the sender without violating the
sender's already-negotiated envelope, and if it
cannot, then [= reject =] <var>p</var> with a
newly [= exception/created =]
{{InvalidModificationError}}, and abort these
steps.
cannot, then:
</p>
<ol>
<li>
[=Queue a global task=] on the [=networking task source=] given the
current realm's [=global object=] as <var>global</var> to [=reject=]
<var>p</var> with a newly [=exception/created=] {{InvalidModificationError}}.
</li>
<li>
Abort these steps.
</li>
</ol>
</li>
<li>
<p>
Expand Down Expand Up @@ -9454,8 +9463,9 @@ <h2>
</li>
<li>
<p>
[= Resolve =] <var>p</var> with
<code>undefined</code>.
[=Queue a global task=] on the [=networking task source=] given the
current realm's [=global object=] as <var>global</var> to [=resolve=]
<var>p</var> with <code>undefined</code>.
</p>
</li>
</ol>
Expand Down Expand Up @@ -9592,9 +9602,10 @@ <h2>
</li>
<li>
<p>
[= Resolve =] <var>p</var> with the resulting
{{RTCStatsReport}} object, containing the gathered
stats.
[=Queue a global task=] on the [=networking task source=] given the
current realm's [=global object=] as <var>global</var> to [=resolve=]
<var>p</var> with the resulting {{RTCStatsReport}} object,
containing the gathered stats.
</p>
</li>
</ol>
Expand Down Expand Up @@ -10674,9 +10685,10 @@ <h2>
</li>
<li>
<p>
[= Resolve =] <var>p</var> with the resulting
{{RTCStatsReport}} object, containing the gathered
stats.
[=Queue a global task=] on the [=networking task source=] given the
current realm's [=global object=] as <var>global</var> to [=resolve=]
<var>p</var> with the resulting {{RTCStatsReport}} object,
containing the gathered stats.
</p>
</li>
</ol>
Expand Down Expand Up @@ -15831,9 +15843,10 @@ <h2>
</li>
<li>
<p>
[= Resolve =] <var>p</var> with the resulting
{{RTCStatsReport}} object, containing the gathered
stats.
[=Queue a global task=] on the [=networking task source=] given the
current realm's [=global object=] as <var>global</var> to [=resolve=]
<var>p</var> with the resulting {{RTCStatsReport}} object,
containing the gathered stats.
</p>
</li>
</ol>
Expand Down

0 comments on commit f8a6dc7

Please sign in to comment.