Skip to content

Commit

Permalink
have parallel steps before returning
Browse files Browse the repository at this point in the history
  • Loading branch information
annevk committed Jul 5, 2017
1 parent fe5dbb5 commit f5afeba
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions dom.bs
Original file line number Diff line number Diff line change
Expand Up @@ -1605,8 +1605,8 @@ the following:
<p>If |options|' <code>signal</code> member is present, then:

<ol>
<li><p>If |options|' <code>signal</code>'s [=AbortSignal/aborted flag=] is set, [=reject=] |p|
with an "{{AbortError}}" {{DOMException}} and return |p|.
<li><p>If |options|' <code>signal</code>'s [=AbortSignal/aborted flag=] is set, then [=reject=]
|p| with an "{{AbortError}}" {{DOMException}} and return |p|.

<li>
<p>[=AbortSignal/Add|Add the following abort steps=] to |options|' <code>signal</code>:
Expand All @@ -1618,11 +1618,16 @@ the following:
</ol>
</ol>

<li><p>Return |p|, and run the remaining steps [=in parallel=].
<li>
<p>Run these steps [=in parallel=]:

<ol>
<li><p>Let |amazingResult| be the result of doing some amazing things.

<li><p>Let |amazingResult| be the result of doing some amazing things.
<li><p>[=Resolve=] |p| with |amazingResult|.
</ol>

<li><p>[=Resolve=] |p| with |amazingResult|.
<li><p>Return |p|.
</ol>
</div>

Expand Down

0 comments on commit f5afeba

Please sign in to comment.