Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 11 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -574,9 +574,18 @@ <h3>
The <dfn>subscribe()</dfn> method when invoked MUST run the following steps:
</p>
<ol class="algorithm">
<li>Let |promise| be [=a new promise=].
<li>Let |global| be the [=relevant global object=] of [=this=].
</li>
<li>Let |global| be [=this=]' [=relevant global object=].
<li>If |global| is a {{Window}} object:
<ol>
<li>If |global| does not have [=transient activation=], return [=a promise rejected
with=] with a {{"NotAllowedError"}} {{DOMException}}.
</li>
<li>[=Consume user activation=] of |global|.
</li>
</ol>
</li>
<li>Let |promise| be <a>a new promise</a>.
</li>
<li>Return |promise| and continue [=in parallel=].
<aside class="note" title="Validation order can vary across user agents">
Expand Down