Skip to content

Commit a48927f

Browse files
committed
[css-font-loading] Switch from 'await a stable state' to just use 'queue a task'.
1 parent 48353a7 commit a48927f

File tree

2 files changed

+8
-14
lines changed

2 files changed

+8
-14
lines changed

css-font-loading/Overview.bs

+4-7
Original file line numberDiff line numberDiff line change
@@ -224,8 +224,7 @@ The Constructor</h3>
224224
Attempt to parse the data in it as a font.
225225
When this is completed,
226226
successfully or not,
227-
await a stable state,
228-
then run the following steps synchronously:
227+
queue a task to run the following steps synchronously:
229228

230229
<ol>
231230
<li>
@@ -294,8 +293,7 @@ The <code>load()</code> method</h3>
294293
<li>
295294
When the load operation completes,
296295
successfully or not,
297-
await a stable state,
298-
then run the following steps synchronously:
296+
queue a task to run the following steps synchronously:
299297

300298
<ol>
301299
<li>
@@ -698,8 +696,7 @@ The <code>load()</code> method</h3>
698696
and terminate these steps.
699697

700698
<li>
701-
Await a stable state,
702-
then run the following steps synchronously:
699+
Queue a task to run the following steps synchronously:
703700

704701
<ol>
705702
<li>
@@ -1030,7 +1027,7 @@ API Examples</h2>
10301027

10311028
<ol>
10321029
<li>
1033-
Corrected the async algorithms to use "await a stable state" language,
1030+
Corrected the async algorithms to use "queue a task" language,
10341031
to ensure that side-effect timing is well-defined.
10351032
</ol>
10361033

css-font-loading/Overview.html

+4-7
Original file line numberDiff line numberDiff line change
@@ -352,8 +352,7 @@ <h3 class="heading settled heading" data-level=2.1 id=font-face-constructor><spa
352352
Attempt to parse the data in it as a font.
353353
When this is completed,
354354
successfully or not,
355-
await a stable state,
356-
then run the following steps synchronously:
355+
queue a task to run the following steps synchronously:
357356

358357
<ol>
359358
<li>
@@ -414,8 +413,7 @@ <h3 class="heading settled heading" data-level=2.2 id=font-face-load><span class
414413
<li>
415414
When the load operation completes,
416415
successfully or not,
417-
await a stable state,
418-
then run the following steps synchronously:
416+
queue a task to run the following steps synchronously:
419417

420418
<ol>
421419
<li>
@@ -795,8 +793,7 @@ <h3 class="heading settled heading" data-level=3.3 id=font-face-set-load><span c
795793
and terminate these steps.
796794

797795
<li>
798-
Await a stable state,
799-
then run the following steps synchronously:
796+
Queue a task to run the following steps synchronously:
800797

801798
<ol>
802799
<li>
@@ -1086,7 +1083,7 @@ <h2 class="no-num heading settled heading" id=changes><span class=content>Change
10861083

10871084
<ol>
10881085
<li>
1089-
Corrected the async algorithms to use "await a stable state" language,
1086+
Corrected the async algorithms to use "queue a task" language,
10901087
to ensure that side-effect timing is well-defined.
10911088
</ol>
10921089

0 commit comments

Comments
 (0)