Skip to content

Commit eea0a62

Browse files
committed
deploy: d893e1c
1 parent ccba9b9 commit eea0a62

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

index.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet">
88
<meta content="Bikeshed version d765c696b, updated Fri Mar 8 15:58:52 2024 -0800" name="generator">
99
<link href="https://www.w3.org/TR/design-principles/" rel="canonical">
10-
<meta content="ff46d8fce26719269d9f5de143b6666f6d6c4868" name="revision">
10+
<meta content="d893e1c5da763dca6a694d292d6ee7dd1320cb77" name="revision">
1111
<meta content="dark light" name="color-scheme">
1212
<link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css">
1313
<style>
@@ -701,7 +701,7 @@
701701
<div class="head">
702702
<p data-fill-with="logo"><a class="logo" href="https://www.w3.org/"> <img alt="W3C" height="48" src="https://www.w3.org/StyleSheets/TR/2021/logos/W3C" width="72"> </a> </p>
703703
<h1 class="p-name no-ref" id="title">Web Platform Design Principles</h1>
704-
<p id="w3c-state"><a href="https://www.w3.org/standards/types#ED">Editor’s Draft</a>, <time class="dt-updated" datetime="2024-04-03">3 April 2024</time></p>
704+
<p id="w3c-state"><a href="https://www.w3.org/standards/types#ED">Editor’s Draft</a>, <time class="dt-updated" datetime="2024-04-05">5 April 2024</time></p>
705705
<details open>
706706
<summary>More details about this document</summary>
707707
<div data-fill-with="spec-metadata">
@@ -2296,10 +2296,10 @@ <h3 class="heading settled" data-level="7.2" id="promises-and-events"><span clas
22962296
it should dispatch them before the Promise resolves,
22972297
rather than after.</p>
22982298
<p>When a promise is resolved, a <a href="https://html.spec.whatwg.org/multipage/webappapis.html#microtask">microtask</a> is queued to run its reaction callbacks.
2299-
Microtasks are processed when the JavaScript stack empties. <a href="https://dom.spec.whatwg.org/#dispatching-events">Dispatching an event</a> is synchronous,
2299+
Microtasks are processed when the JavaScript stack empties. <a href="https://dom.spec.whatwg.org/#dispatching-events">Dispatching an event</a> is synchronous,
23002300
which involves the JavaScript stack emptying between each listener.
23012301
As a result, if a promise is resolved before dispatching a related event,
2302-
any microtasks that are scheduled in reaction to a promise
2302+
any microtasks that are scheduled in reaction to a promise
23032303
will be invoked between the first and second listeners of the event.</p>
23042304
<p>Dispatching the event first prevents this interleaving.
23052305
All event listeners are then invoked before any promise reaction callbacks.</p>
@@ -3342,7 +3342,7 @@ <h3 class="heading settled" data-level="11.3" id="implementability"><span class=
33423342
<a class="self-link" href="#eme-and-payment-request"></a>
33433343
<p><a data-link-type="biblio" href="#biblio-encrypted-media" title="Encrypted Media Extensions">[ENCRYPTED-MEDIA]</a> and <a data-link-type="biblio" href="#biblio-payment-request" title="Payment Request API">[payment-request]</a> are both examples of specifications
33443344
which minimize API differences by isolating a non-standard component
3345-
(<a data-link-type="dfn">Content Decryption Modules</a> and <a data-link-type="dfn">payment methods</a>, respectively)
3345+
(<a href="https://w3c.github.io/encrypted-media/#cdm">Content Decryption Modules</a> and <a href="https://www.w3.org/TR/payment-method-manifest/">payment methods</a>, respectively)
33463346
from the rest of the (shared) API surface.</p>
33473347
</div>
33483348
<p>Groups sometimes choose to specify APIs

0 commit comments

Comments
 (0)